public DrunkException(String message){
super(message);//调用父类
}
异常处理中,重写构造函数,将message参数传递到父类的成员变量里了?其中是怎么实现的?super怎么使用?
miaoqichao
相关分类