似乎
Swift中的空数组可以转换为任何数组类型.
请参阅以下示例:
var obj = [Int]() // compiler warns that this cast always fails,but this evaluates to true print(obj is [String]) obj.append(3) // This evaluates to false as expected print(obj is [String])
这在操场上很容易验证,但也会在编译的代码中发生.这是一个已知的问题?
正如@Hamish指出的那样,这确实是一个众所周知的问题.他的评论指向错误报告
https://bugs.swift.org/browse/SR-6192.
原文链接:https://www.f2er.com/swift/319337.html这种类型逻辑的解决方法似乎是
type(of:obj)== [SomeType] .self
要扩展上面的例子,
var obj = [Int]() obj is [String] // true type(of: obj) == [String].self // false type(of: obj) == [Int].self // true obj.append(3) obj is [String] // false type(of: obj) == [String].self // false