/** * * @author YZJ * @Description java中定义常量的最佳方法 */ public final class Contants{ /** * @Description 私有化构造方法 */ private Contants(){}; public static final int contants1 = 1<<1; public static final int contants2 = 1<<2; public static final int c…
1. 子类的构造函数如果要引用super的话,必须把super放在函数的首位. class Base { Base() { System.out.println("Base"); } } public class Checket extends Base { Checket() { super();//调用父类的构造方法,一定要放在方法的首个语句 System.out.println("Checket"); } …