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