摘要:
package Exrro; public class Test { //ctrl + alt + T快速生成异常捕捉 public static void main(String[] args) { int a=1; int b=0; //java 异常捕捉可以一次捕捉多个,但异常必须从catch 阅读全文
摘要:
package Demo.oop.APP.Demo08; public class Application { public static void main(String[] args) { Outer os = new Outer(); //通过这个外部类来实例化内部类 Outer.Inner 阅读全文
摘要:
package Demo.oop.APP.Demo03; //demo3包的启动器 //此启动器用于继承 public class application { public static void main(String[] args) { Student s1 = new Student(); S 阅读全文