interface Foo<T> { ... }
class Bar implements Foo<Baz> { ... }
I've got a Bar object. How to get the value of T for it (Baz)?
So far, I only managed to get the interface and T, but I can't see a way to get its value.
Thanks in advance.
I've got a So far, I only managed to get the interface and Thanks in advance. |
|||
|
|
Of course, in the general case, you should iterate over the array, rather than assuming it has excatly one element ( |
||||