Golang之泛型编程-细节

Posted sigmod3

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang之泛型编程-细节相关的知识,希望对你有一定的参考价值。

Golang没有泛型<>,但是可以通过interface{}来接收各种类型值。

如下运用切片和泛型实例:

type Slice []interface{}

func NewSlice() Slice {
    return make(Slice, 0)
}

func (this* Slice) Add(elem interface{}) error {
    for _, v := range *this {
        if v == elem {
            fmt.Printf("Slice:Add elem: %v already exist
", elem)
            return ERR_ELEM_EXIST
        }
    }
    *this = append(*this, elem)
    fmt.Printf("Slice:Add elem: %v succ
", elem)
    return nil
}

func (this* Slice) Remove(elem interface{}) error {
    found := false
    for i, v := range *this {
        if v == elem {
            if i == len(*this) - 1 {
                *this = (*this)[:i]

            } else {
                *this = append((*this)[:i], (*this)[i+1:]...)
            }
            found = true
            break
        }
    }
    if !found {
        fmt.Printf("Slice:Remove elem: %v not exist
", elem)
        return ERR_ELEM_NT_EXIST
    }
    fmt.Printf("Slice:Remove elem: %v succ
", elem)
    return nil
}

  

以上是关于Golang之泛型编程-细节的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin小知识之泛型和委托

java编程之泛型

C#基础知识之泛型

Java初谈之泛型

深入理解Java之泛型

delphi新语法之泛型实现的对象池模板