throws
在进行方法定义的时候如果要告诉调用者本方法可能产生哪些异常,
你就可以使用throws进行声明,如果该方法出现问题后不希望进行处理,就使用throws抛出。
范例:使用throws定义方法 (☆throws用在方法上)
class MyMath{
public static int p(int x,int y)throws Exception{
return x/y;
}
}
public class TestDemo {
public static void main(String[] args) {
// TODO 自动生成的方法存根
System.out.println(MyMath.p(10, 2));
}
} //未处理的异常类型 Exception
如果你现在调用了throws声明的方法,那么在调用时必须明确的使用try..catch进行异常捕获,因为该方法有可能产生异常捕获,因为该方法有可能产生异常,所以必须按照异常的方式来进行处理。主方法本身也属于一个方法,所以主方法也可以使用throws进行异常的抛出,这个时候如果产生了额一查
class MyMath{
public static int p(int x,int y)throws Exception{
return x/y;
}
}
public class TestDemo {
public static void main(String[] args) {
// TODO 自动生成的方法存根
try {
System.out.println(MyMath.p(10, 2));
}catch(Exception e) {
e.printstacktrace();
}
}
}
class MyMath{
public static int p(int x,int y)throws Exception{
return x/y;
}
}
public class TestDemo {
public static void main(String[] args)throws Exception {
System.out.println(MyMath.p(10, 2));
}
}
你们在以后所编写的代码里面一定要斟酌好可能产生的异常,因为面对未知的程序类,如果要进行异常的处理,就必须明确的指的有多少种异常。
文章最后发布于: 2018-05-05 19:46:54
相关阅读
num = 1 def fun(): num = 123 print(num) fun() print(num)此时没有使用global关键字,无法对全局变量num进行修改,运
一个网站的关键词排名最快的应该是做竞争推广,但是这种方式需要的成本会比较高。而自然排名的关键词优化则是相对成本比较少的。不
JAVA异常处理机制(二)——throws/throw的区别和使用
JAVA中throw和throws的区别:https://www.cnblogs.com/xiohao/p/3547443.html 区别:(摘自上面的博客)1、throws出现在方法函数头;而thro
static 关键字总结: 变量可以被static 修饰,意义有发生变化吗? 下面我们看个例子: (1)变量不加 static 修饰 #include <stdio.h> void
有一段时间没有写博客,最近一段时间一直在补自己的C++知识,尤其是面向对象的部分。昨晚在看CPP的时候发现了一个有趣的关键字:explic