gpt4 book ai didi

ios - 无法将表达式的类型 'StaticString' 转换为类型 'StringLiteralConvertible' (Swift)

转载 作者:搜寻专家 更新时间:2023-10-31 19:40:01 25 4
gpt4 key购买 nike

在 iOS 上运行的编程语言中的泛型?不必多说了,把我的钱拿去!

这是我的实验代码(这是在 Playground 上运行的):

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'

我这辈子都想不通为什么。任何帮助将不胜感激。

最佳答案

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

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

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

希望这对您有所帮助!

关于ios - 无法将表达式的类型 'StaticString' 转换为类型 'StringLiteralConvertible' (Swift),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25647455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com