• 2021-04-14 问题

    请说出下列代码的执行结果 : String s = "abcd"; String s1 = new String(s); if (s = = s1) System.out.println("the same"); if (s.equals(s1)) System.out.println("equals");

    请说出下列代码的执行结果 : String s = "abcd"; String s1 = new String(s); if (s = = s1) System.out.println("the same"); if (s.equals(s1)) System.out.println("equals");

  • 2022-06-08 问题

    给出下列的代码,则以下哪个选项返回true String s="hello"; String t="hello"; char c []= {’h’,’e’,’1’,’1’,’o’};A)s.equals(t); A: t. equals( B: ; C: s==t; D: t==c;

    给出下列的代码,则以下哪个选项返回true String s="hello"; String t="hello"; char c []= {’h’,’e’,’1’,’1’,’o’};A)s.equals(t); A: t. equals( B: ; C: s==t; D: t==c;

  • 2022-06-16 问题

    有如下一段代码: 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))

    有如下一段代码: 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))

  • 2021-04-14 问题

    "change one's tune" equals to "change one's attitude". ( )

    "change one's tune" equals to "change one's attitude". ( )

  • 2022-11-04 问题

    已知: 则在横线处添加哪些代码b的值为true() A: s1==s B: s2==s C: s3==s D: s.equals(s1)

    已知: 则在横线处添加哪些代码b的值为true() A: s1==s B: s2==s C: s3==s D: s.equals(s1)

  • 2022-05-29 问题

    ‍若String s = “Hello” ; String t = “Hello”;String c=new String(s);则下列哪个表达式返回false?( )​ A: s.equals(t); B: t.equals(c); C: s==c; D: s==t;

    ‍若String s = “Hello” ; String t = “Hello”;String c=new String(s);则下列哪个表达式返回false?( )​ A: s.equals(t); B: t.equals(c); C: s==c; D: s==t;

  • 2022-06-08 问题

    下列代码片段执行结果是:String s=new String(”abc”); String s1=new String(s); if(s==s1){ System.out.println(”Hello”); } if(s.equals(s1)){ System.out.println(”World”); } A: Hello World B: Hello C: World D: Null

    下列代码片段执行结果是:String s=new String(”abc”); String s1=new String(s); if(s==s1){ System.out.println(”Hello”); } if(s.equals(s1)){ System.out.println(”World”); } A: Hello World B: Hello C: World D: Null

  • 2021-04-14 问题

    下列代码段执行后的结果是 StringBuffer s=new StringBuffer("Hello"); if((s.length()>=5)&&(s.append("there").equals("False"))) s.replace(0,6,"False"); System.out.println(s);

    下列代码段执行后的结果是 StringBuffer s=new StringBuffer("Hello"); if((s.length()>=5)&&(s.append("there").equals("False"))) s.replace(0,6,"False"); System.out.println(s);

  • 2022-06-04 问题

    If the elasticity equals -10,the Lerner Index equals 0。01( )

    If the elasticity equals -10,the Lerner Index equals 0。01( )

  • 2022-06-08 问题

    String s= "hello";     String t = "hello";  char c[] = {’h’,’e’,’l’,’l’,’o’} ;     Which return true?() A:  s.equals(t); B:  t.equals(c); C:  s==t; D:  t.equals(new String("hello")); E:  t==c;

    String s= "hello";     String t = "hello";  char c[] = {’h’,’e’,’l’,’l’,’o’} ;     Which return true?() A:  s.equals(t); B:  t.equals(c); C:  s==t; D:  t.equals(new String("hello")); E:  t==c;

  • 1 2 3 4 5 6 7 8 9 10