A.String s = "Gone with the wind"; String t = " good "; String k = s + t;
B.String s = "Gone with the wind"; String t; t = s[3] + "one";
C.String s = "Gone with the wind"; String standard = s.toUpperCase();
D.String s = "home directory"; String t = s - "directory"
看下面關(guān)于switch的語(yǔ)句
switch(exp1 ) { }
表達(dá)式exp1可以是()類型
A.int
B.char
C.byte
D.String
A.List
B.Map
C.Set
D.HashTable