Java   View all facts   Glossary   Help
syntactic unit > keyword > super
Next keywordsynchronized    Upkeyword    Previous keywordstatic   

super comparison table
Subject have purpose is an instance of have syntax is a kind of is a subtopic of have example has definition
keyword   syntactic unit  A word that has special meaning in Java
superkeyword
super.variableOrMethodNameInSuperclass
 Classes
//Example of a constructor that explicitly calls a constructor in the superclass using the keyword super
public Movie(int m)}
super(m);
...
}
A keyword that refers to the superclass of an object

Next keywordsynchronized    Upkeyword    Previous keywordstatic