/** * JAVA中常用关键字复习 * final * finalize * finally * * @author dyq * */ public class KeyWordReview extends Box{ public static void main(String[] args) { /** * final可以用于类、方法、变量前,用来表示该类、方法、变量是不可变的。 * 1.用于类前表示此类为最终类,不能被继承。 * 2.用于方法前,表示该方法是最终的方法,只能被调用,不能被覆盖,但是可以被重载。 * 3.用于变量前,表示该变量是一个常量,在定义赋值后不能在被修改。 */ final int a = 10; //a = 20;//报错 /** * finalize * 方法名。 * 1.Java 技术允许使用 finalize() 方法在垃圾收集器将对象从内存中清除出去之前做必要的清理工作。 * 这个方法是由垃圾收集器在确定这个对象没有被引用时对这个对象调用的。它是在 Object 类中定义的, * 因此所有的类都继承了它。子类覆盖 finalize() 方法以整理系统资源或者执行其他清理工作。 * finalize() 方法是在垃圾收集器删除对象之前对这个对象调用的。 * 2.Java中所有类都从Object类中继承finalize()方法 */ /** * finally的使用try/catch代码块中,finally表示无论是否抛出异常,一定会被执行的代码。(比如文件流关闭,数据库连接关闭等) */ try { int i = 10; System.out.println(10); } catch (Exception e) { System.out.println("进入异常了"); }finally { System.out.println("最终finally执行"); } } public void getCount(String a) { System.out.println("final修饰的方法"); } } class Box{ public static final int count = 120; Box(){ try { this.finalize(); } catch (Throwable e) { e.printStackTrace(); } } public final void getCount() { System.out.println("final修饰的方法"); } }
this与super
/** * this与super的使用 * this是自身的一个对象,代表对象本身,可以理解为:指向对象本身的一个指针。 * 1.普通的直接引用 * 2.形参与成员名字重名,用this来区分: * 3.引用构造函数 * * super可以理解为是指向自己超(父)类对象的一个指针,而这个超类指的是离自己最近的一个父类。 * 1.普通的直接引用 * 2.子类中的成员变量或方法与父类中的成员变量或方法同名 * 3.引用构造函数 * super(参数):调用父类中的某一个构造函数(应该为构造函数中的第一条语句)。 * this (参数):调用本类中另一种形式的构造函数(应该为构造函数中的第一条语句)。 * @author dyq * * * *super和this的异同: super(参数):调用基类中的某一个构造函数(应该为构造函数中的第一条语句) this(参数):调用本类中另一种形成的构造函数(应该为构造函数中的第一条语句) super: 它引用当前对象的直接父类中的成员(用来访问直接父类中被隐藏的父类中成员数据或函数,基类与派生类中有相同成员定义时如:super.变量名 super.成员函数据名(实参) this:它代表当前对象名(在程序中易产生二义性之处,应使用this来指明当前对象;如果函数的形参与类中的成员数据同名,这时需用this来指明成员变量名) 调用super()必须写在子类构造方法的第一行,否则编译不通过。每个子类构造方法的第一条语句,都是隐含地调用super(),如果父类没有这种形式的构造函数,那么在编译的时候就会报错。 super()和this()类似,区别是,super()从子类中调用父类的构造方法,this()在同一类内调用其它方法。 super()和this()均需放在构造方法内第一行。 尽管可以用this调用一个构造器,但却不能调用两个。 this和super不能同时出现在一个构造函数里面,因为this必然会调用其它的构造函数,其它的构造函数必然也会有super语句的存在,所以在同一个构造函数里面有相同的语句,就失去了语句的意义,编译器也不会通过。 this()和super()都指的是对象,所以,均不可以在static环境中使用。包括:static变量,static方法,static语句块。 从本质上讲,this是一个指向本对象的指针, 然而super是一个Java关键字。 */ public class ThisSuperReview { public static void main(String[] args) { Box2 box2 = new Box2(); box2 = new Box2("1000","1"); System.out.println(box2.getMax()); } } class Box1{ private String max; private String min; public Box1() { System.out.println("Box1的无参数构造方法"); } public Box1(String max,String min) { System.out.println("Box1的有参数构造方法"); this.max = max; this.min = min; } public String getMax() { return max; } public void setMax(String max) { this.max = max; } public String getMin() { return min; } public void setMin(String min) { this.min = min; } } class Box2 extends Box1{ private String max; private String min; public Box2() { System.out.println("Box2的无参数构造方法"); } public Box2(String max,String min) { System.out.println("Box2的有参数构造方法"); this.max = max; this.min = min; } public String getMax() { return max; } public void setMax(String max) { this.max = max; } public String getMin() { return min; } public void setMin(String min) { this.min = min; } }