区别一:throw 是语句抛出一个异常;throws 是方法抛出一个异常;

 

throw语法:throw <异常对象>

 

在方法声明中,添加throws子句表示该方法将抛出异常。

 

throws语法:[<修饰符>]<返回值类型><方法名>([<参数列表>])[throws<异常类>]

 

其中:异常类可以声明多个,用逗号分割。

 

区别二:throws可以单独使用,但throw不能;

 

区别三:throw要么和try-catch-finally语句配套使用,要么与throws配套使用。但throws可以单独使用,然后再由处理异常的方法捕获。

 

 

 

大家也许在编程的过程中,会意识到这里出错,但不知道会抛出什么异常,也是一件头疼的事,现将这部分总结如下:

 

算术异常类:arithmeticexecption

 

空指针异常类:nullpointerexception

 

类型强制转换异常:classcastexception

 

数组负下标异常:negativearrayexception

 

数组下标越界异常:arrayindexoutofboundsexception

 

违背安全原则异常:secturityexception

 

文件已结束异常:eofexception

 

文件未找到异常:filenotfoundexception

 

字符串转换为数字异常:numberformatexception

 

操作数据库异常:sqlexception

 

输入输出异常:ioexception

 

方法未找到异常:nosuchmethodexception