4

在 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'

我无法为我的生活找出原因。任何帮助将非常感激。

4

1 回答 1

1

我发现了一个类似的问题,我可以通过在实例化类时指定类型来使其工作,即你必须告诉类实例化后泛型将具有什么类型,在你的情况下它可能是这样的:

var foo = Foo<String>.floop("test")  //or,
var foo = Foo<Int>.floop("test")

我在你的代码中试过了,它在操场上工作。

希望这可以帮助!

于 2014-10-12T06:10:28.963 回答