这个是叫啥?我半编办照视频敲的代码,真的不能融会贯通。要点到底是哪没有抓住?- class Lianxi
- {
- public static void main(String[] args)
- {
- Test.function().method();
-
-
- }
- }
- interface Inter
- {
- void method();
- }
- class Test
- {
- int x=3
- static Inter function()
- {
- return new Inter()
- {
- public void method()
- {
- System.out.println("世界好");
- }
- };
- }
-
-
- }
复制代码 |
|