• 2022-06-05
    以下要输出“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);
  • B

    内容

    • 0

      设String对象s="H",运行语句System.out.println(s.concat("ello!"));后String对象s的内容为"Hello!",所以语句输出为"Hello!"。

    • 1

      以下程序的输出结果是 String s1="1",s2="2"; String s=s1+s2; System.out.println(s);

    • 2

      下列选项中,()是正确的JSP表达式。 A: <;% String s="hello world";%>; B: <;%=hello world";>; C: <;%="hello world"%>; D: <;%!"hello world"%>;

    • 3

      8、下列选项中,()是正确的表达式。 A: <;% String s="hello world"; %>; B: <;%="hello world"; %>; C: <;% ="hello world" %>; D: <;%! "hello world" %>;

    • 4

      ‍若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;