问答题请描述一下JAVA中抽象类与接口的异同点。
问答题请写出面向对象的三大特征,并做简要说明。
问答题String如何与字节数组相互转换?请写出相应的方法。
问答题请简述final和finally的区别,并说明各自的用途。
多项选择题下面哪段语法执行正确()
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";