You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package reflect
-
- import "reflect"
-
- // GetGenericType 获得泛型的类型
- func GetGenericType[T any]() reflect.Type {
- return reflect.TypeOf([0]T{}).Elem()
- }
-
- // GetGenericElemType 获得泛型的类型。适用于数组、指针类型
- func GetGenericElemType[T any]() reflect.Type {
- return reflect.TypeOf([0]T{}).Elem().Elem()
- }
|