/**
* 使用throws将异常抛出
*/
public class Test03 {
// public static void createFile(String path){
// File f = new File(path);
// f.createNewFile();
//打开createNewFile()方法源码:public boolean createNewFile() throws IOException
//createNewFile方法在声明时将异常抛出 方法本身不处理该异常即方法内不存在catch
//当调用该方法时 需要对异常进行处理
//如果不catch处理 可以像createNewFile方法一样通过 throws Exception 将异常抛给调用当前方法的上一级
//
public static void readFile(String path) throws Exception{
FileReader reader = null;
try{
reader = new FileReader(path);
System.out.println((char) reader.read());
finally{
//throws异常无需catch 但打开文件需要关闭
reader.close();
//这里close()的异常也随着throws抛给了上一级 这里也可以对close进行完整的try catch
public static void upper(){
// readFile(\"C:/a.txt\");
//在调用readFile方法时由于该方法throws Exception 所以这里需要处理抛出的异常
【华为|java异常抛出throws】try {
//ctrl+alt+T快捷键调用try/catch包裹surround with
readFile(\"C:/a.txt\");
catch (Exception e) {
throw new RuntimeException(e);
//自动生成try/catch 抛出新的运行时异常对象
//如果当前方法不想处理异常 除了surround with try/catch idea还提示Add exception to method signature 向方法签名添加异常 即throws Exception
public static void main(String[
args) throws Exception{
//将main方法的异常抛出 会交由JVM虚拟机处理
- javascript|噩耗传来!阿里挺住!
- 音响|拿下6000万新订单,华为5G的优势明显了!
- 华为鸿蒙系统|率先搭载鸿蒙3.0!环幕屏+4K镜头+66W!华为新款手机直降400
- 华为鸿蒙系统|200倍变焦+IP68级防水,鸿蒙系统加持,8+512G卖7438依旧断货
- 华为|1699元的4G手机!华为畅享50 Pro价格公布,新圾皇诞生?
- 华为|联想全球化影响超过华为,高管晒成绩单!小米、OPPO也有上榜!
- 苹果作为全球市值第一的公司|除苹果华为外,高通又与一大厂商达成合作
- Java|java自定义异常
- javascript|java try-with-resource自动关闭
- Java|java包装类wrapper class