美文网首页
Golang 学习之“”、nil 和 len(s)的对比

Golang 学习之“”、nil 和 len(s)的对比

作者: C_GO流媒体后台开发 | 来源:发表于2019-04-13 23:29 被阅读0次

    1 用法

    使用”“判断string变量是否为空。
    输入:

    var s string
    if s == "" {
        fmt.Println("s is empty")
    } else {
        fmt.Println("s is not empty")
    }
    

    输出:
    s is empty

    2 nil用法

    使用nil判断结构体的指针是否为空。
    输入:

    var Str struct {
        name string
        age int
    }
    func main() {
        var s *Str
        if s == nil {
            fmt.Println(" s is nil ")
        } else {
            fmt.Println(" s is not nil ")
        }
    }
    

    输出: s is nil

    3 len(s)用法

    用于求数组、切片和字典的长度。
    输入:

    func main () {
        var s [] string
        if len(s) == 0 {
            fmt.Println("s is empty")
        } else {
            fmt.Println("s is not empty")
        }
    }
    

    相关文章

      网友评论

          本文标题:Golang 学习之“”、nil 和 len(s)的对比

          本文链接:https://www.haomeiwen.com/subject/ygudwqtx.html