I have been trying to get my head around how an Association would work between two classes in Java. Could someone kindly explain how it works,
Is it just
or is that just a pure inheritance?
Is it just
Code:
Public Class mySubClass{
}
public Class myMainClass extends mySubClass{
}
or is that just a pure inheritance?