継承:
* 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. #
プログラム例:
package reegan; class Dad
{
int お金=2000;
}
クラスの息子がお父さんを拡張します
{
}
パブリッククラスメインクラス
{
public static void main(String []args)
{
息子 s1=新しい息子();
System.out.println(s1.money);
}
}
以上が日の継承:の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。