摘要:
class A{ int n = 10; public void m(){ int a = 1;//在JDK1.8中,默认添加final---->final int a = 1; 所以在15行可以访问 class B{ ... 阅读全文
摘要:
结果肯定是不可以的!因为JVM在运行此代码时,会找不到入口函数! public class Test { static void main(String[] args) { System.out.println("hehe"); }} 运行结果: ... 阅读全文