How do I get a class instance of generic type T?

前端 未结 22 1582
猫巷女王i
猫巷女王i 2020-11-21 11:03

I have a generics class, Foo. In a method of Foo, I want to get the class instance of type T, but I just can\'t call T.

22条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-21 12:00

    You can't do it because of type erasure. See also Stack Overflow question Java generics - type erasure - when and what happens.

提交回复
热议问题