当前位置: 技术问答>java相关
请教scjp中的问题
来源: 互联网 发布时间:2015-02-27
本文导语: 有时候会有这样两种选项同时出现在供选择的答案中。比如一段代码: class a{ } | I mean the compiler exit before it create a class file. and the prompt is as following: ----------- C:src>javac testCompile.jav...
有时候会有这样两种选项同时出现在供选择的答案中。比如一段代码:
class a{
}
class a{
}
|
I mean the compiler exit before it create a class file.
and the prompt is as following:
-----------
C:src>javac testCompile.java
testCompile.java:4: 变量 a 可能还未被初始化
a=a+1;
^
1 个错误
C:src>
------------
and the prompt is as following:
-----------
C:src>javac testCompile.java
testCompile.java:4: 变量 a 可能还未被初始化
a=a+1;
^
1 个错误
C:src>
------------