当前位置: 技术问答>java相关
初学者问题(2):关于super的使用问题,请大家多多帮忙。
来源: 互联网 发布时间:2015-07-27
本文导语: class AgeException extends Exception { int age; AgeException(String message) { super(message);//在样引用父类构造器对吗? } AgeException(){ super(); } } 我知道AgeException是Exception的子类,但是我并不知道Exception...
class AgeException extends Exception
{
int age;
AgeException(String message)
{
super(message);//在样引用父类构造器对吗?
}
AgeException(){
super();
}
}
我知道AgeException是Exception的子类,但是我并不知道Exception中都有哪些构造器,象上面例子中这样直接使用对吗?
{
int age;
AgeException(String message)
{
super(message);//在样引用父类构造器对吗?
}
AgeException(){
super();
}
}
我知道AgeException是Exception的子类,但是我并不知道Exception中都有哪些构造器,象上面例子中这样直接使用对吗?
|
Exception 只有两个构造函数:
Exception()
Constructs an Exception with no specified detail message.
Exception(String s)
Constructs an Exception with the specified detail message.
所以你的方法完全正确
Exception()
Constructs an Exception with no specified detail message.
Exception(String s)
Constructs an Exception with the specified detail message.
所以你的方法完全正确