顺序执行下面2个语句,输出的结果是 。
String s="hello!";
System.out.println(s.length());
String s="hello!";
System.out.println(s.length());
举一反三
- 下面代码的输出结果是0。 String s = new String(); System.out.println(s.length());
- 以下要输出“hello,world!”正确的是? A: String s=String.format("%1s%2s","hello","world");System.out.println(s); B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s); C: String s=String.format("%s,%s","hello","world");System.out.println(s); D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);
- 下列代码片段执行结果是: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 = "COMPUTER"; System.out.println(s.substring(3,6));
- String s="kdaiekal";System.out.println(s.length());输出的值为___________。