[单项选择题] 假设有以下代码:String s="hello";String t="hello";char c[ ]={"h","

18 查阅

[单项选择题] 假设有以下代码:String s="hello";String t="hello";char c[ ]={"h","e","l","l","o"}; 下列选项中,返回false的语句是______。

A.equals(;

B.equals(;

C.s==t;

D.equals(new String("hello"));

参考答案:

B

[分析] ==操作符所比较的是操作符两端的操作数是否是同一个对象,而String的equals( )方法所比较的是两个String对象的内容是否一样,其参数是一个String对象时才有可能返回true,其他对象都返回false。因此只有选项B符合题意。

计算机考试