有如下一段代码: Integer s = new Integer(9); Integer t = new Integer(9); Long u = new Long(9); 则下面选项中返回值为true的是:________。
A: (s==u)
B: (s==t)
C: (s.equals(t))
D: (s.equals(9))
E: (s.equals(new Integer(9))
A: (s==u)
B: (s==t)
C: (s.equals(t))
D: (s.equals(9))
E: (s.equals(new Integer(9))
举一反三
- 有如下一段代码: Integer s = new Integer(9); Integer t = new Integer(9); Long u = new Long(9); 则下面选项中返回值为true的是:________。
- 有如下一段代码:Integer s = new Integer(9); Int...返回值为true的是:________。
- 有程序片段如下,以下哪个表示式的结果为true?( ) Float s=new Float(0.1f); Float t=new Float(0.1f); Double u=new Double(0.1); A: s==t B: s.equals(t) C: u.equals(s) D: t.equals(u)
- 有程序片段如下,以下哪个表示式的结果为true Float s=new Float(0.1f);<br/>Float t=new Float(0.1f);<br/>Double u=new Double(0.1); A: s==t B: s.equals(t) C: u.equals(s) D: t.equals(u)
- 请说出下列代码的执行结果 : String s = "abcd"; String s1 = new String(s); if (s = = s1) System.out.println("the same"); if (s.equals(s1)) System.out.println("equals");