1 构造方法 构造方法是一种特殊的方法,只有在创建对象的时候才被调用,用来执行初始化的操作,比如给属性赋值... 1) 构造方法名字跟类名一致,没有返回值也就没有返回值类型 2) 格式: 类名(参数列表){ 方法体 } 3) 创建对象的标准格式: 类名 对象名 = new 构造方法 案例:Demo1 public class Demo11 { public static void main(String[] args) { Math2 math = new Math2(); math.sub(1…