在iOS上运行的编程语言中的泛型?不必多说了,把我的钱拿去!
这是我的实验代码(这是在游乐场中运行):
class Foo<GenericType1> {
var value:GenericType1?
init(value:GenericType1) {
self.value = value;
}
}
class Foo2<GenericType2> : Foo<GenericType2> {
override init(value:GenericType2) {
super.init(value:value);
}
}
extension Foo {
class func floop<T>(value: T) -> Foo2<T> {
return Foo2<T>(value:value)
}
}
其次是:
var foo = Foo.floop("test")
最后一部分抛出错误消息:
Cannot convert the expression's type 'StaticString' to type 'StringLiteralConvertible'
我不能为我的生活找出原因。任何帮助将不胜感激。
答案 0 :(得分:1)
我发现了一个类似的问题,我可以通过在实例化类的时刻指定类型来使其工作,即你必须告诉一旦实例化类通用将具有什么类型,在你的情况下它可能是类似的这样:
var foo = Foo<String>.floop("test") //or,
var foo = Foo<Int>.floop("test")
我在你的代码中尝试过,它在游乐场工作。
希望这有帮助!