欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

java 中父類和子類的創建

方一強1年前8瀏覽0評論

在Java中,類可以從另一個類繼承屬性和方法。繼承其他類的類稱為子類,被繼承的類稱為父類或超類。通過繼承,我們可以重用現有類的代碼,并在其中添加新的功能。創建一個子類需要指定父類的名稱,并使用關鍵字extends。下面是一個簡單的示例:

class Parent {
int parentVariable;
void parentMethod(){
System.out.println("This is a parent method");
}
}
class Child extends Parent {
int childVariable;
void childMethod(){
System.out.println("This is a child method");
}
}

在這個示例中,我們創建了兩個類:Parent和Child。類Parent是我們的父類,Child是我們的子類。我們使用extends關鍵字來指示Child類的父類是Parent類。

在Child類中,我們添加了一個childVariable屬性和一個childMethod方法。Child類還可以訪問其父類中的parentVariable屬性和parentMethod方法。我們可以通過創建Child類的對象來訪問它的屬性和方法:

Child child = new Child();
child.childVariable = 10;
child.childMethod();
child.parentVariable = 20;
child.parentMethod();

在這個示例中,我們創建了一個Child對象,并設置了它的childVariable屬性。我們還調用了它的childMethod方法。接下來,我們設置了它的parentVariable屬性,并調用了它的parentMethod方法。Child類可以繼承Parent類的所有屬性和方法,但也可以添加自己的屬性和方法。