簡體   English   中英

如何使用泛型作為參數?(Swift 2.0)

[英]How to use generics as params?(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(list)

得到編譯錯誤:

無法將'[ProductModel]'類型的值轉換為預期的參數類型'[_]'。

我的問題是如何在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)
    }
}

我發現這個問題很有意思,並認為我們如何以通用的方式解決它。

protocol Product {
    var productID : Int {get set}
}

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

protocol GenericListProtocol {
    typealias T : Product
    var list : [T] { get set }
    var filteredlist : [T] { get set }

}

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

class GenericListProtocolClass : GenericListProtocol
{
    typealias T = ProductModel
    var intVal = 0

    var list =  [T]()
    var filteredlist = [T]()

}

class testProtocol {
    class func myfunc(re: GenericListProtocolClass){
        let list : [ProductModel] = [ProductModel(id: 1),ProductModel(id: 2),ProductModel(id: 3),ProductModel(id: 4)]
        re.setData(list)
    }
}


let temp = GenericListProtocolClass()
testProtocol.myfunc(temp)

如果可以進一步改進,請欣賞您的想法和建議。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM