JavaDailyReports10_20】的更多相关文章

1 package varycode; 2 class Grandparent 3 { 4 public Grandparent() 5 { 6 7 System.out.println("GrandParent Created."); 8 9 } 10 11 12 public Grandparent(String string) 13 { 14 15 System.out.println("GrandParent Created.String:" + strin…