当前位置: 技术问答>java相关
一个关于java中的一句话的意思???
来源: 互联网 发布时间:2015-05-04
本文导语: 请问这句话的具体意思是什么???这样写的有什么用? static void rideRollerCoasterAtAge(int age) throws NegativeAgeException,OutOfAgeLimitException { } throw new NegativeAgeException(age); | NegativeAgeException 和 OutO...
请问这句话的具体意思是什么???这样写的有什么用?
static void rideRollerCoasterAtAge(int age) throws NegativeAgeException,OutOfAgeLimitException
{
}
throw new NegativeAgeException(age);
static void rideRollerCoasterAtAge(int age) throws NegativeAgeException,OutOfAgeLimitException
{
}
throw new NegativeAgeException(age);
|
NegativeAgeException
和 OutOfAgeLimitException 是用户从 Exception中派生的,他可以自己定义构造函数的
和 OutOfAgeLimitException 是用户从 Exception中派生的,他可以自己定义构造函数的
|
这是自己定义的异常。