• 2022-06-07 问题

    class Test { public static void main(String[] args) { StringBuffer sb = new StringBuffer("hello world"); sb.replace(6, sb.length(), "java"); System.out.println( sb.toString() ); } } 选择正确的运行结果 A: hello javad B: hellojava C: hello java

    class Test { public static void main(String[] args) { StringBuffer sb = new StringBuffer("hello world"); sb.replace(6, sb.length(), "java"); System.out.println( sb.toString() ); } } 选择正确的运行结果 A: hello javad B: hellojava C: hello java

  • 2022-07-24 问题

    设原字符串s为StringBuffer型,且s="Hellojava",如果想用子串替换把s转换成"HelloWorld",则正确的语句是() A: s.replace(6,9,"World"); B: s.replace(6,10,"World"); C: s="World"; D: s=replace("java","World");

    设原字符串s为StringBuffer型,且s="Hellojava",如果想用子串替换把s转换成"HelloWorld",则正确的语句是() A: s.replace(6,9,"World"); B: s.replace(6,10,"World"); C: s="World"; D: s=replace("java","World");

  • 2022-06-19 问题

    已知Strings="hello";则关于表达式语句s.append("java");的说法正确的是? A: 编译通过,顺利运行,则执行该表达式之后,s的字符串是“hellojava" B: 编译通过,顺利运行,则执行表达式之后,s的字符串是“hello" C: 编译失败,因为String对象s是字符串常量,无法添加新的字符串 D: 编译失败,因为String对象"hello"是字符串常量,没有append方法

    已知Strings="hello";则关于表达式语句s.append("java");的说法正确的是? A: 编译通过,顺利运行,则执行该表达式之后,s的字符串是“hellojava" B: 编译通过,顺利运行,则执行表达式之后,s的字符串是“hello" C: 编译失败,因为String对象s是字符串常量,无法添加新的字符串 D: 编译失败,因为String对象"hello"是字符串常量,没有append方法

  • 1