给出下面的代码,则以下(  )选项返回true。 String s="hello"; String t="hello"; Char c[]={’h’,’e’,’l’,’l’,’o’};

admin2010-07-28  32

问题 给出下面的代码,则以下(  )选项返回true。    String s="hello";    String t="hello";    Char c[]={’h’,’e’,’l’,’l’,’o’};

选项 A、s. equals (t) ;
B、t. equals (C);
C、s==t;
D、t==c;

答案A

解析 ==操作符比较的是操作符两端的操作数是否是同一个对象,而String的equals()方法比较的是两个String对象的内容是否一样,其参数是一个String对象时才有可能返回true,其他对象都返回假。
转载请注明原文地址:https://kaotiyun.com/show/Z89p777K
0

最新回复(0)