[單項選擇題] 下列的哪個程序段可能導(dǎo)致錯誤A)String s = "hello"; String t = "good"; String k = s +
2021-07-20
[單項選擇題] 下列的哪個程序段可能導(dǎo)致錯誤
A)String s = "hello";
String t = "good";
String k = s + t;B.String s = "hello";
String t;
t = s[3] + "one";C.String s = " hello ";
String standard = s.toUpperCase( );D.String s = "hello";
String t = s + "good";
A.String s = "hello";String t = "good";
String k = s + t;
B.String s = "hello";
String t;
t = s[3] + "one";
C.String s = " hello ";
String standard = s.toUpperCase( );
D.String s = "hello";
String t = s + "good";
正確答案:
B
參考解析:解析:選項A)String類型可以直接使用“+”運算符進行連接運算。選項B)String是一種Object,而不是簡單的字符數(shù)組,不能使用下標運算符取其值的某個元素,錯誤。選項C)toUpperCase( )方法是String對象的一個方法,作用是將字符串的內(nèi)容全部轉(zhuǎn)換為大寫并返回轉(zhuǎn)換后的結(jié)果(String類型)。選項D)同選項A)。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。