判断题
设String对象s="H",运行语句System.out.println(s.concat("ello!"));后String对象s的内容为"Hello!",所以语句输出为"Hello!"。
错误
判断题 java异常处理中可以使用多个catch子句,此时应将高级别异常类的catch子句放在前面。
判断题 abstract方法所在的类必须是abstract类。
判断题 如果p是父类Parent的对象,而c是子类Child的对象,则语句p=c是正确的。