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

时间:2017-01-07 06:02:17

标签: swift swift3

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

func test<T>() -> Wrapper<T> {
  let isArray = T.self is Array<Any>
  ... 
}

但它发出警告

  

来自&#39; T.type&#39;不相关的类型&#39;数组&#39;总是失败

我该如何解决这个问题?

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

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

2 个答案:

答案 0 :(得分: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]

答案 1 :(得分:-1)

你没有传递任何参数,因此没有类型和泛型函数没有意义。删除泛型类型:

func() {}

或者,如果你想传递一个参数:

let array = ["test", "test"]
func test<T>(argument: T) {
    let isArray = argument is Array<Any>
    print(isArray)
}

test(argument: array)

打印:true