dongyizhui0616 2015-11-03 10:59
浏览 17
已采纳

进行Go语言初始测试的通用方法

This question already has an answer here:

Is there a generic way to test a variable for initial in Go?

Given these test:

package main

import "fmt"

type FooStruct struct {
    A string
    B int
}

type BarStruct struct {
    A string
    B int
    C map[int]string
}

func main() {
    // string isinital test
    var s string
    fmt.Println(s == "")

    // int isinital test
    var i int
    fmt.Println(i == 0)

    // primitive struct isinital test
    var fp FooStruct
    fmt.Println(fp == FooStruct{})

    // complex struct isinital test
    // fail -> invalid operation: fc == BarStruct literal (struct containing map[int]string cannot be compared)
    var fc BarStruct
    fmt.Println(fc == BarStruct{})

    // map isinital test
    var m map[string]int
    fmt.Println(len(m) == 0)

    // map isinital test 
    // fail -> invalid operation: m == map[string]int literal (map can only be compared to nil)
    fmt.Println(m == map[string]int{})
}

A: What is the proper way to test BarStruct for initial?

B: Is there a generic way to test any var for is initial?

</div>
  • 写回答

1条回答 默认 最新

  • dongtan1845 2015-11-03 11:03
    关注

    You can use reflect.DeepEqual:

    bs := BarStruct{}
    fmt.Println(reflect.DeepEqual(bs, BarStruct{}))
    // Output:
    //   true
    

    Playground: http://play.golang.org/p/v11bkKUhXQ.

    EDIT: you can also define an isZero helper function like this:

    func isZero(v interface{}) bool {
        zv := reflect.Zero(reflect.TypeOf(v)).Interface()
        return reflect.DeepEqual(v, zv)
    }
    

    This should work with any type:

    fmt.Println(isZero(0))
    fmt.Println(isZero(""))
    fmt.Println(isZero(bs))
    fmt.Println(isZero(map[int]int(nil)))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容