对于如下代码,下列哪个叙述是正确的?public class E {public static void main(String args[]){String strOne = new String("你好");String strTwo = strOne;strOne = new String("hello");System.out.println(strTwo);}}
A. 程序编译出现错误
B. 程序标注的【代码】的输出结果是hello
C. 程序标注的【代码】的输出结果是你好
D. 程序标注的【代码】的输出结果是null
查看答案
表达式"abcdef你好".matches("[^0-9^.]+")的值是true。
A. 对
B. 错
表达式"3..1415926".matches("[0-9]+[.]{1}[0-9]+")的值是false。
A. 对
B. 错
表达式java88_hello_99".matches("[a-zA-Z|0-9|_]+")的值是true。
A. 对
B. 错
表达式new String("abc") == new String("abc")的值是true。
A. 对
B. 错