java
panjq882288
这个作者很懒,什么都没留下…
展开
-
Java出现No enclosing instance of type E is accessible. Must qualify the allocation with an enclosing
转载地址:http://blog.csdn.net/sunny2038/article/details/6926079 最近在看Java,在编译写书上一个例子时,由于书上的代码只有一部分,于是就自己补了一个内部类。结果编译时出现:No enclosing instance of type E is accessible. Must qualify the allocation with an转载 2013-01-18 09:20:09 · 740 阅读 · 0 评论 -
override与overload的区别
转载:http://www.blogjava.net/hobby8062/archive/2006/10/31/78227.html override(重写) 1、方法名、参数、返回值相同。 2、子类方法不能缩小父类方法的访问权限。 3、子类方法不能抛出比父类方法更多的异常(但子类方法可以不抛出异常)。 4、存在于父类和子类之间。 5、方法被定义为final不能被重写。 overl转载 2013-03-06 20:25:25 · 478 阅读 · 0 评论