h**********y 发帖数: 1293 | 1 有个函数 static T func(Class c)
runtime怎样得到T的实际类型?
关键是这个函数是static的,
如果不是static我做好了。
求助!万分感谢! |
f*******n 发帖数: 12623 | 2 T的类不是已经直接给你在“c”吗?
和static有什么关系? |
r****n 发帖数: 1088 | 3 you can't get generic type in runtime because of the type erasure, so that
java can be backward compatible.
【在 h**********y 的大作中提到】 : 有个函数 static T func(Class c) : runtime怎样得到T的实际类型? : 关键是这个函数是static的, : 如果不是static我做好了。 : 求助!万分感谢!
|
r****n 发帖数: 1088 | 4 you can't get generic type in runtime because of the type erasure, so that
java can be backward compatible.
【在 h**********y 的大作中提到】 : 有个函数 static T func(Class c) : runtime怎样得到T的实际类型? : 关键是这个函数是static的, : 如果不是static我做好了。 : 求助!万分感谢!
|