I'm learning about class inheritance and such in my Java course right now, but I don't understand. When would I use the "super()" call?
Edit: I found this example of code where super.variable is used:
class A
{
int k = 10;
}
class Test extends A
{
public void m()
{
System.out.println(super.k);
}
}
So I understand that here, you must use super to access the k variable in the superclass. However, in any other case, what does "super();" do? On it's own?

superis not required to referencek.kcan be referenced directly.superwould only be required to accessA.kif you declared another field namedkinTest(Test.k). – Mark Peters Nov 3 '10 at 19:32