String类的方法 replace (CharSequence srt1, CharSequence srt2)返回一个新的字符串,它是通过用srt2替换此字符串中出现的所有 srt1得到的
第1题:
下面程序的输出结果是什么? class Foo{ static void change(String s){ s=s.replace('j','l'); } public static void main(String args[]){ String s="java"; change(s); System.out.println(s); } }()
A.lava
B.java
C.编译错误
D.运行时出现异常
第2题:
下面( )不是String类提供的合法的方法。
A、equals(String)
B、trim()
C、append()
D、indexOf()
第3题:
在Java语言中,能够实现字符串连接的方法是()
A.String sub string(intstart point)
B.String concat(Strings)
C.String replace(charold,charnew)
D.String trim()
第4题:
下列不是 String 类的方法的是()
第5题:
String a = “ABCD”; String b = a.toLowerCase(); b.replace(‘a’, ‘d’); b.replace(‘b’, ‘c’); System.out.println(b); What is the result? ()
第6题:
下列程序的输出结果是( )。 public class Test { public static void main (String[] args) { String s="hello"; s.replace ('r','m'); System.out.println(s); } }
A.hello
B.HELLO
C.hemmo
D.HEMMO
第7题:
Public class test ( Public static void stringReplace (String text) ( Text = text.replace (‘j’ , ‘i’); ) public static void bufferReplace (StringBuffer text) ( text = text.append (“C”) ) public static void main (String args[]} ( String textString = new String (“java”); StringBuffer text BufferString = new StringBuffer (“java”); stringReplace (textString); BufferReplace (textBuffer); System.out.printLn (textString + textBuffer); ) ) What is the output?()
第8题:
下列方法中,不属于类 String 的方法是
A ) tolowerCase ()
B ) valueof ()
C ) charAt ()
D ) append ()
第9题:
下列类Account的构造方法中,声明正确的是?()
第10题:
File类的方法中,用于列举某目录下的子目录及文件的方法是()