java中抛出异常使用哪个关键字

2024-11-03 03:51:10
推荐回答(2个)
回答1:

public void aMethod() throws Exception{
int i = 1/0;
}
使用throws抛出异常

回答2:

throw关键字