I have a class that is MyClass<T>
I need to subclass it to MySubclass<Nothing>
But sometimes I need to send a MyClass
reference to a Java function, which in turn can receive MySubclass
, How can I declare it so that it is compatible?
Or should I simply use void receiveClass(aClass: MyClass<*>)
?
If I understood your question correctly, you can do:
Both variants will work and are equivalent during runtime, the difference is whether you need the type information
<E>
inside thereceiveClass
for type safety in compile time.