func toNSArray<T>() -> [T] {...}
编译器没有错误,但我不知道如何调用此函数.我试过了:
jList.toNSArray<String>()jList.<String>toNSArray()
但它不起作用.
如何在没有输入参数的情况下在Swift中调用Generic函数?
解决方法 你需要通过一些调用上下文告诉Swift返回类型是什么:// eitherlet a: [Int] = jList.toNSArray()// or,if you aren’t assigning to a variablesomeCall( jList.toNSArray() as [Int] )
注意,在后一种情况下,只有当someCall采用类似于Any的模糊类型作为其参数时,才需要这样做.相反,someCall被指定为[Int]作为参数,函数本身提供上下文,你可以只写someCall(jList.toNSArray())
事实上,有时可以非常推断出背景!这有效,例如:
extension Array { func asT<T>() -> [T] { var results: [T] = [] for x in self { if let y = x as? T { results.append(y) } } return results }}let a: [Any] = [1,2,3,"heffalump"]// here,it’s the 0,defaulting to Int,that tells asT what T is...a.asT().reduce(0,combine: +)总结
以上是内存溢出为你收集整理的ios – Swift中没有输入参数的通用函数?全部内容,希望文章能够帮你解决ios – Swift中没有输入参数的通用函数?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)