ios – 如何使用泛型作为参数?(Swift 2.0)

操场上的代码就在这里

class ProductModel {
    var productID : Int = 0
    init(id:Int) {
        productID = id
    }
}


protocol GenericListProtocol {
    typealias T = ProductModel
    var list : [T] { get set }
    var filteredlist : [T] { get set }
    func setData(list : [T])
}
extension GenericListProtocol {
    func setData(list: [T]) {
        list.forEach { item in
            guard let productItem = item as? ProductModel else {
                return
            }
            print(productItem.productID)
        }
    }
}

class testProtocol {
    class func myfunc<N:GenericListProtocol>(re:N){
        var list : [ProductModel] = [ProductModel(id: 1),ProductModel(id: 2),ProductModel(id: 3),ProductModel(id: 4)]
        re.setData(list)
    }
}

但在行re.setData(列表)

得到编译错误:

Cannot convert value of type ‘[ProductModel]’ to expected argument
type ‘[_]’.

我的问题是如何在GenericListProtocol中使用setData方法?

任何人都可以提供帮助,我

最佳答案 将ProductModel类型移动到扩展中并从通用协议中删除约束似乎可行.

class ProductModel {
    var productID : Int = 0
    init(id:Int) {
        productID = id
    }
}

protocol GenericListProtocol {
    typealias T
    var list : [T] { get set }
    var filteredlist : [T] { get set }
    func setData(list : [T])
}

extension GenericListProtocol {
    func setData(list: [ProductModel]) {
        list.forEach { item in
            print(item.productID)
        }
    }
}

class testProtocol {
    class func myfunc<N:GenericListProtocol>(re:N) {
        let list : [ProductModel] = [ProductModel(id: 1),ProductModel(id: 2),ProductModel(id: 3),ProductModel(id: 4)]
        re.setData(list)
    }
}
点赞