- public class ExceptionDemo {
- public static void main(String[] args)throws Exception{
- try{
- throw new Exception();
-
- }catch(Exception e){
- System.out.println("Caught in main()");
- }
- System.out.println("nothing");
- }
- }
Caught in main()
nothing
final如果修饰方法,则该方法不能被子类覆盖。
private 同类
默认 同包 不需要使用任何关键字
类的局部变量必须初始化。 类的成员变量可以不初始化。
阅读(1189) | 评论(0) | 转发(0) |