Flutter判断泛型类型
来源:www.jianshu.com 发布时间:2021-06-23 14:20
void main() {
test<int>();
}
static testT<T>() {
//判断T是否为某一类型或其子类
print(List<T>() is List<num>);
//得到T的类型
print(typeOf<T>());
}
static Type typeOf<T>() => T;
test<int>();
}
static testT<T>() {
//判断T是否为某一类型或其子类
print(List<T>() is List<num>);
//得到T的类型
print(typeOf<T>());
}
static Type typeOf<T>() => T;
更新时间:2024-12-18 20:26