Go语言提供了运行时反射的内置支持实现,并允许程序借助反射包来操纵任意类型的对象。在Golang的reflect.IsNil()函数是用于检查其参数V是否为零。所述参数必须是议员,FUNC,接口,Map,指针,或切片值;如果不是,IsNil恐慌。
注意:IsNil并不总是等同于与Go中的nil进行常规比较。例如,如果V是通过调用的valueOf与一个未初始化的接口变量I,I ==零将是真实的,但v.IsNil将恐慌为v将是零值创建的。
用法:
func (v Value) IsNil() bool
参数:此函数不接受任何参数。
返回值:此函数是否返回它的参数v是零或不是。
以下示例说明了以上方法在Golang中的用法:
范例1:
// Golang program to illustrate
// reflect.IsNil() Function
package main
import (
"bytes"
"fmt"
)
// Main function
func main() {
var body *bytes.Buffer
fmt.Printf("main():body == nil ? %t\n", body == nil)
}
输出:
main():body == nil ? true
范例2:
// Golang program to illustrate
// reflect.IsNil() Function
package main
import (
"fmt"
"reflect"
)
func isNilFixed(i interface{}) bool {
if i == nil {
return true
}
switch reflect.TypeOf(i).Kind() {
case reflect.Ptr, reflect.Map, reflect.Array, reflect.Chan, reflect.Slice:
//use of IsNil method
return reflect.ValueOf(i).IsNil()
}
return false
}
// Main function
func main() {
t:= reflect.TypeOf(5)
arr:= reflect.ArrayOf(4, t)
inst:= reflect.New(arr).Interface().(*[4]int)
for i:= 1; i <= 4; i++ {
inst[i-1] = i*i
}
fmt.Println(isNilFixed(inst))
}
输出:
false
相关用法
- Golang reflect.FieldByIndex()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
- Golang reflect.Index()用法及代码示例
- Golang reflect.Append()用法及代码示例
- Golang reflect.Copy()用法及代码示例
- Golang reflect.Kind()用法及代码示例
- Golang reflect.FuncOf()用法及代码示例
- Golang reflect.MapOf()用法及代码示例
- Golang reflect.Swapper()用法及代码示例
- Golang reflect.TypeOf()用法及代码示例
- Golang reflect.StructOf()用法及代码示例
- Golang reflect.SliceOf()用法及代码示例
- Golang reflect.MakeChan()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 reflect.IsNil() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。