クラスの初期化

復習中・・・。

class Super {
static { System.out.print("Super "); }
}
class One {
static { System.out.print("One "); }
}
class Two extends Super {
static { System.out.print("Two "); }
}
class Test {
public static void main(String[] args) {
One o = null;
Two t = new Two();
System.out.println((Object)o == (Object)t);
}
}

とあって、java Test を実行したときの出力結果は?

説明は http://java.sun.com/docs/books/jls/third_edition/html/execution.html#44667 です。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です