抽象クラスとオブジェクトを格納する配列(java)
独習java第4版でわからない所があります。
abstract class Widget {
String color;
abstract int getMass();
public String toString() {
return getClass().getName() + ": " +
color + ", " + getMass();
}
}
class WidgetA extends Widget {
final static int MASS = 4;
WidgetA(String color) {
this.color = color;
}
int getMass() {
return MASS;
}
}
class WidgetB extends Widget {
final static int MASS = 1;
WidgetB(String color) {
this.color = color;
}
int getMass() {
return MASS;
}
}
class WidgetC extends Widget {
final static int MASS = 5;
WidgetC(String color) {
this.color = color;
}
int getMass() {
return MASS;
}
}
class WidgetD extends Widget {
final static int MASS = 17;
WidgetD(String color) {
this.color = color;
}
int getMass() {
return MASS;
}
}
class WidgetTypes {
static int NUMWIDGETS = 6;
public static void main(String args[]) {
// 部品を格納する領域を宣言して割り当てる
Widget widgets[] = new Widget[NUMWIDGETS];
// 部品を作成する
widgets[0] = new WidgetC("Red");
widgets[1] = new WidgetA("Green");
widgets[2] = new WidgetD("Yellow");
widgets[3] = new WidgetB("Magenta");
widgets[4] = new WidgetA("Black");
widgets[5] = new WidgetC("White");
// 部品を処理する
int totalMass = 0;
for(int i = 0; i < NUMWIDGETS; i++) {
Widget w = widgets[i];
System.out.println(w);
totalMass += w.getMass();
}
// 総重量を表示する
System.out.println("Total mass = " + totalMass);
}
}
これはある問題の解答ですが、僕にはどうしても理解出来ない部分があります。
mainのforループ内で
Widget w = widgets[i];
totalMass += w.getMass();
となっています。
この仕組がわかりません。
まず Widget w = widgets[i] でWidget型の変数wにWidget型のwidget[i]を代入しているのにw.getMass()がエラーにならない理由がわかりません。(Widgetクラスは抽象クラスなのにwがWidgetクラスのインスタンスになっている?)
これは 抽象メソッド( abstract int getMass() ) があるためでしょうか?
ちなみにWidgetクラスとそのサブクラスからこの抽象メソッドを削除したらコンパイルエラーが出ました。
ではなぜ抽象クラスの抽象メソッドから、そのサブクラスのメソッドまで範囲が伸びるのでしょうか?
どういう仕組でしょうか?
この質問を書きながら思ったのですが、どうも配列の仕組みや抽象クラス・メソッドの仕組み、「オブジェクト」と「インスタンス」の違いがよくわかってないようです。
多分問題の本質はそこにあると思うんです。
駄文で申し訳ないです。
よろしくお願いします。