Discussions
Is it possible to address an "extended" class?
ClassM is the lead-off class in a project, and it extends ClassU. Is there a way for both classes to directly address each other? By this I mean that when a class instantiates itself it produces a link which can be used by other classes to address it. This link (or address) is the only way I know do do this. In my question both ClassM & ClassU are special in that M is the "Main" guy and "U" is called by Java ahead of M executing.
Is there a way for each class to obtain this link from the other?