refactor: 参数绑定等优化

This commit is contained in:
meilin.huang
2026-02-07 13:12:07 +08:00
parent 403d1c45e5
commit 9bb9861d88
61 changed files with 762 additions and 436 deletions

View File

@@ -2,25 +2,6 @@ package structx
import "reflect"
// NewInstance 创建泛型 T 的实例。如果 T 是指针类型,则创建其指向类型的实例并返回指针。
func NewInstance[T any]() T {
var t T
// 反射判断是否是指针类型,并且是否为 nil
if reflect.ValueOf(t).Kind() == reflect.Ptr {
// 创建 T 对应的非指针类型的实例,并取其地址作为新的 T
t = reflect.New(reflect.TypeOf(t).Elem()).Interface().(T)
} else if kind := reflect.TypeOf(t).Kind(); kind == reflect.Array || kind == reflect.Slice {
// 如果是数组或切片类型,创建一个新的切片(数组)
elemType := reflect.TypeOf(t).Elem()
newSlice := reflect.MakeSlice(reflect.SliceOf(elemType), 0, 0)
t = newSlice.Interface().(T)
}
return t
}
// IsZeroValue 检查字段是否为零值
func IsZeroValue(v reflect.Value) bool {
switch v.Kind() {
@@ -39,4 +20,4 @@ func IsZeroValue(v reflect.Value) bool {
default:
return reflect.DeepEqual(v.Interface(), reflect.Zero(v.Type()).Interface())
}
}
}