7 Anonymous inner class (視頻下載) (全部書籍) 馬克-to-win:有時如此簡單,都沒有必要清清楚楚明確出類名,用一下就完,就用匿名內部類。註意: 下麵的new FigureMark_to_win(){。。。。};的語法形式。它和以往的new FigureMark_to_ ...
7 Anonymous inner class (視頻下載) (全部書籍)
馬克-to-win:有時如此簡單,都沒有必要清清楚楚明確出類名,用一下就完,就用匿名內部類。註意: 下麵的new FigureMark_to_win(){。。。。};的語法形式。它和以往的new FigureMark_to_win()不同,現在的這個new的是FigureMark_to_win的子類(否則“我啥也不是”, 應該被列印出來。)。
例2.7_0:
class FigureMark_to_win {
void whoAmI(){
System.out.println("我啥也不是");
}
}
class Triangle extends FigureMark_to_win {
void whoAmI() {
System.out.println("三角形!");
}
}
public class Test {
public static void main(String[] args) {
Triangle d = new Triangle();
d.whoAmI();
new Triangle().whoAmI();//連指針都省了
/*
馬克-to-win:下麵這句程式,都沒有像上面一樣提出一個Triangle類的概念,主要是如此簡單,都沒有必要清清楚楚明確出類名,所以就直接
new FigureMark_to_win(){。。。。}; ,馬克-to-win: 大家註意一下格式和分號。 even though the
next statemnt new a abstract class which is not
allowed, it implement the method of whoAmI, so it is not the real abstract class instantiation.
*/
FigureMark_to_win a = new FigureMark_to_win() {
void whoAmI() {
System.out.println("長方形!");
}
};
a.whoAmI();
。。。。。。。。。。。。。。。。。
詳情請進:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner4_web.html#AnonymousInnerClass