如何知道Golang中任意类型的变量是否为零?

前端之家收集整理的这篇文章主要介绍了如何知道Golang中任意类型的变量是否为零?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
因为并非所有类型都具有可比性一片.所以我们不能这样做
var v ArbitraryType
v == reflect.Zero(reflect.TypeOf(v)).Interface()

编辑 – 解决方案reflect.DeepEqual

var v ArbitratyType
zero := reflect.Zero(reflect.TypeOf(v)).Interface()
isZero := reflect.DeepEqual(v,zero)

去关于reflect.DeepEqual的文档

DeepEqual tests for deep equality. It uses normal == equality where possible but will scan elements of arrays,slices,maps,and fields of structs.

看这篇文章

Golang: Reflection – How to get zero value of a field type

基本上,您需要针对不可比较类型的特殊情况.

原文链接:https://www.f2er.com/go/242080.html

猜你在找的Go相关文章