多态:继承 方法得重写 父类得引用指向子类得对象 多态中成员访问特点 多态中的向上转型和向下转型 抽象类的特点
int与String互换 自动拆箱装箱jdk1.5 异常得体系结构 Throwable Error:不可处理异常 Exception:可处理异常 编译期异常: 运行时异常:RuntimeException 多重catch块 - try {
int[] arr = {1, 2, 3};
System.out.println(arr[3]);
}catch (ArrayIndexOutOfBoundsException e){
e.printStackTrace();
throws
public void fenshu(int score) throws Test{
if (score < 0 || score > 100) {
throw new Test("你输入的分数有误");
}else{
System.out.println("分数正常");
|
|