Java 由方法抛出异常

2024-11-01 08:49:56
推荐回答(5个)
回答(1):

Java中异常可以通过throws关键字直接抛出异常,示例如下:
public class A**Exception
{
private String id;

public void setID(String id)
{
if(id.length() == 7)
{
this.id = id;
}else
{
throw new IllegalArgumentException("参数长度不是7位");
}
}
}
以上代码,抛出了一个IllegalArgumentException类型的异常。
还有一种系统异常,只需要捕捉显示即可,使用try/catch关键字。

回答(2):

使用throws 然后将异常列表加上就行了!如:
public void show()throws Exception
{
//doSoming...
}

代码补全如下:
class MethodException
{
static void m() throws Exception
{
int a=3;
int b=0;
int c=a/b;
System.out.println(a+"/"+b+"="+c);
}
public static void main(String args[])
{
try{m();}
catch(Exception e)
{
//调用方法m()捕获产生的异常,现实异常信息。
System.out.println("程序结束");
}
}

}

回答(3):

当你的方法中调用某个方法时,会出现异常时,建议可以抛出异常,比如:

throw new IllegalArgumentException(" ")

回答(4):

你这个连TRY语句都没有,怎么去CATCH哦。。
要修改一下的。。像一楼那么修改及可以了。。

回答(5):

你想问什么?throws?