package com.pyk;
//构造器的重载
//定义一个”人“类
public class Person {
//属性
String name;
int age;
double heigth;
//空构造器(一般保证空构造器的存在,空构造器一般不会进行属性的赋值操作)
public Person() {
}
//重载构造器,一般会重载构造器,在重载的构造器中进行属性的赋值操作
public Person(String name,int age,double heigth) {
//在要表示对象的属性前加上this.来修饰,因为this代表的就是你创建的那个对象
this.name=name;
this.age=age;
this.heigth=heigth;
}
//主方法
public static void main(String[] args) {
//创建一个名为zs的对象,利用重载的构造器对其进行属性的赋值操作
Person zs=new Person("张三",18,180.5);
System.out.println(zs.name);
System.out.println(zs.age);
System.out.println(zs.heigth);
}
}
|