閱讀下面程序 public class ConcatTest{public static void main(String[] args) {String st
閱讀下面程序 public class ConcatTest{ public static void main(String[] args) { String strl = "abc"; String str2 = "ABC"; String str3 = str1.concat(str2); System.out.println(str3); } } 程序的運行結(jié)果是:
A.a(chǎn)be
B.ABC
C.a(chǎn)bcABC
D.ABCabc
正確答案:C解析:本題考查字符串的使用。String類提供concat(str)方法,該方法將當前字符串對象與指定str字符串相連。題目程序中生成兩個字符串變量str1和str2,并為其賦值,然后生成一個字符串變量str3,該字符串變量的值為表達式str1.concat(str2)的結(jié)果。表達式str1.concat(str3)是把字符串str1與字符串str2相連,結(jié)果為“abcABC”。因此,程序的運行結(jié)果是“abcABC”。本題的正確答案是選項C。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。