ERBUNG:
* Inheritance is implemented using the extends keyworrds. * Inheritance in java is a mechanism where one class child or subclass acquires the properties and behaviors fields and methods of another class parent or superclass. * subclass (child) - the class that inherits from another class * superclass (parent) - the class being inherited from To inherit from a class, use the extends keyword. #
Beispielprogramm:
package reegan; class Dad
{
int geld=2000;
}
Klasse Sohn erweitert Papa
{
}
öffentliche Klasse Hauptklasse
{
public static void main(String []args)
{
Sohn s1=neuer Sohn();
System.out.println(s1.money);
}
}
Das obige ist der detaillierte Inhalt vonTagesvererbung:. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!