if (a>10) { int c = 20; System.out.println(c); }else { int c=30; System.out.println(c); }
此处c的作用范围未重合,此处程序成立
public static void main(String[] args) { int a = 20; if (a>10) { int a = 2; } }
此处a = 20;的作用范围包括了a = 2;的作用范围,此处程序不成立
欢迎分享,转载请注明来源:内存溢出
if (a>10) { int c = 20; System.out.println(c); }else { int c=30; System.out.println(c); }
此处c的作用范围未重合,此处程序成立
public static void main(String[] args) { int a = 20; if (a>10) { int a = 2; } }
此处a = 20;的作用范围包括了a = 2;的作用范围,此处程序不成立
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)