哥们,你其中有一句我不太懂,就是new Inter(){{}};看样子应该是一条语句,我不知道这是什么知识点?请指教啊,:o:o我只知道这样能实现:
- interface Inter
- {
- void method();
- }
- class Test
- {
- public static void function()
- {
- class S implements Inter
- {
- public void method()
- {
- System.out.println("method run!");
- }
- }
- new S().method();
- }
- }
- class TestDemo11
- {
- public static void main(String[] args)
- {
- Test.function();
- }
- }
复制代码
:lol |