本帖最后由 々白点潜心ザ 于 2014-4-22 14:47 编辑
- interface Inter
- {
- void method();
- }
- class Test
- {
- static Inter function()
- {
- return new Inter()
- {
- public void method()
- {
- System.out.println("method run!");
- }
- };
- }
- }
- class InnerClassDemo
- {
- public static void main(String[] args)//前面为何一定要加public!!!
- {
- Test.function().method();
- }
- }
复制代码 小弟初学,求大神指点,谢了
|
|