2013-11-19から1日間の記事一覧

OCJ-P対策

クラスの継承関係あたりをメモ。 package sun.text; public class InheritanceExercise { String salute = "Hello"; public static void main(String[] args) { A a = new A(); B b = new B(); C c = new C(); E e = new E(); // コンパイル時にわかる継承関…