Open LABSARI opened 1 month ago
When printing extends, it prints the name of the class, missing parameter types when it is a parametric class.
class A<U, V>{} class B extends A<Integer, String>{}
When printing class B, we have the following result:
class B extends A{}
It can be the same for implements.
When printing extends, it prints the name of the class, missing parameter types when it is a parametric class.
When printing class B, we have the following result: