当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO TypeOf用法及代码示例


GO语言"reflect"包中"TypeOf"函数的用法及代码示例。

用法:

func TypeOf(i any) Type

TypeOf 返回表示 i 的动态类型的反射类型。如果 i 是 nil 接口值,TypeOf 返回 nil。

例子:

package main

import (
	"fmt"
	"io"
	"os"
	"reflect"
)

func main() {
	// As interface types are only used for static typing, a
	// common idiom to find the reflection Type for an interface
	// type Foo is to use a *Foo value.
	writerType := reflect.TypeOf((*io.Writer)(nil)).Elem()

	fileType := reflect.TypeOf((*os.File)(nil))
	fmt.Println(fileType.Implements(writerType))

}

输出:

true

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 TypeOf。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。