有程序片段如下,以下哪个表示式的结果为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)
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); 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)
- 有如下一段代码: 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))
- 已知f(t)=u(t-1)-u(t-2),且s(t)=f(t)*f(t),则s(3)=? <br/>______
- 以下(<br/>)语句是创建数组的正确语句。 A: float [ ]= new float[6]; B: float f[6]= new float[6]; C: float [ ] f= new float[6]; D: float [ ] f[6]= new float[6]; E: float [ ] f= new float[6] f; F: float f- new float[6];
- 设有定义:double m ,*s ; float n , *t ;,则下列语句正确的是______。 A: s = &n B: s = &m C: s = t D: s = &t