标签:
作用:有些类只使用一次
实现:
interface A{ a(); } class Test(){ public static void test(A a){ a.a(); } public static void main(Strnig args[]){ A.test(new A(){ a(){ System.out.println("test once"); } }); } }
标签:
原文地址:http://www.cnblogs.com/luoxiaolei/p/5361769.html