throwable(父类)

1、throwable包含Error和Exception
2、Exception包含parseException和RuntimeException
3、在RuntimeException中,异常捕获:throw、throws、try…catch…finally…
3~1:throw语法:throw new Exception()
3~2:throws用于方法后,表面该方法可能存在异常,需通过调用者进行更改。
throws后接某种异常,也可直接所有异常父类Exception。
throws的中文意是抛,用于方法表示此方法会抛出某某异常。
3~3:真正起到异常捕获的语句块是:try…catch…finally…,
try后跟可能抛出异常的语句;
catch后跟捕获抛出的异常,可直接父类异常表示,即catch(Exception e),
通过变量名e去引用这个异常,e.printstacktravce();
finally语句块,表示无论有没有异常都会执行,即使在try和catch语句块中有return。
4、创建文本属性对象(properties类)
properties pro =new properties();
pro.setproperty(“username”,“张三”);
pro.setproperty(“password”,“123”);//添加
try{
pro.store(new filewrite(file.txt))//存储
}catch(Exception e){
e.printstacktrace() }
try{
pro.load(new file read(file.txt))//读取
}catch(Exception e){
e.printstacktrace();
}
pro.getproper(“username”);
pro.get proper(“password”);//获取

你可能感兴趣的:(笔记)