摘要:
1 //匿名对象_1 2 class Car 3 { 4 //描述属性; 5 String color; 6 int number; 7 8 //描述行为: 9 void run() 10 { 11 System.out.println(color+":"+number); 12 } 13 } 14 cl... 阅读全文
摘要:
1 //匿名对象_1 2 class Car 3 { 4 //描述属性; 5 String color; 6 int number; 7 8 //描述行为: 9 void run() 10 { 11 System.out.println(color+":"+number); 12 } 13 } 14 cl... 阅读全文
|