如何检查泛型类类型是数组?

may*_*ree 6 swift swift3

我想检查泛型类类型是否为数组:

func test<T>() -> Wrapper<T> {
  let isArray = T.self is Array<Any>
  ... 
}
Run Code Online (Sandbox Code Playgroud)

但它警告说

从'T.type'转换为不相关的类型'Array'总是失败

我怎么解决这个问题?

补充:我已将我的代码上传到Gist. https://gist.github.com/nallwhy/6dca541a2d1d468e0be03c97add384de

我想要做的是根据它是一个模型数组或只是一个模型来解析json响应.

Gri*_*mxn 4

正如评论员 @Holex 所说,您可以使用Any. 结合它Mirror,你可以,例如,做这样的事情:

func isItACollection(_ any: Any) -> [String : Any.Type]? {
    let m = Mirror(reflecting: any)
    switch m.displayStyle {
    case .some(.collection):
        print("Collection, \(m.children.count) elements \(m.subjectType)")
        var types: [String: Any.Type] = [:]
        for (_, t) in m.children {
            types["\(type(of: t))"] = type(of: t)
        }
        return types
    default: // Others are .Struct, .Class, .Enum
        print("Not a collection")
        return nil
    }
}

func test(_ a: Any) -> String {
    switch isItACollection(a) {
    case .some(let X):
        return "The argument is an array of \(X)"
    default:
        return "The argument is not an array"
    }
}

test([1, 2, 3]) // The argument is an array of ["Int": Swift.Int]
test([1, 2, "3"]) // The argument is an array of ["Int": Swift.Int, "String": Swift.String]
test(["1", "2", "3"]) // The argument is an array of ["String": Swift.String]
test(Set<String>()) // The argument is not an array
test([1: 2, 3: 4]) // The argument is not an array
test((1, 2, 3)) // The argument is not an array
test(3) // The argument is not an array
test("3") // The argument is not an array
test(NSObject()) // The argument is not an array
test(NSArray(array:[1, 2, 3])) // The argument is an array of ["_SwiftTypePreservingNSNumber": _SwiftTypePreservingNSNumber]
Run Code Online (Sandbox Code Playgroud)