A.在java中只允许单一继承 B.在java中一个类只能实现一个接口 C.在java中一个类不能同时继承一个类和实现一个接口 D.java的单一继承使代码更可靠
多项选择题下面的哪些程序片断可能导致错误()
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"
多项选择题看下面关于switch的语句 switch(exp1 ) { } 表达式exp1可以是()类型
A.intB.charC.byteD.String