static You can access the variable without instantiating the class that contains static. This variable is called a static variable or a class variable. Class variables can be used properly like global variables.
Access modifier static type name variable name//Declaration
name of the class.Variable name//call
It is used when it is not decided what kind of processing to perform. The abstract method does not write the processing content. Abstract classes cannot be instantiated.
abstract class Sample { //Abstract class declaration
abstract void test(); //Abstract method declaration.{}There is no.
}
An abstract class is a class that is supposed to be a parent class. The processing content is fixed by overriding the abstract method in the subclass.
super Access the variables and methods of the parent class from the child class.
super.Method name//Call the parent class method.