1 问题
如何使属性初始化。
2 方法
在Student类中定义两个构造方法publicStudent(String name)和public Student(String name,int score)。在使用new运算符创建对象,由于实际参数是一个String类型的数据"林冲",因此在实例化时会调用有一个String类型参数的构造方法,即public Student(String name),并且将实际参数"林冲"赋值给形式参数name。
public class Student { String name;// 定义姓名属性 int score;// 定义成绩属性 public Student(String name){ this.name=name; this.score=score; } /** * 自我介绍方法 */ public void introduce(){ System.out.println("大家好,我叫" name ",我的成绩是" score); } public static void main(String[] args){ Student stu1 = new Student("警察"); stu1.introduce(); Student stu2 = new Student("小偷,59"); stu2.introduce(); }} |
---|
3 结语
构造方法仅用于实例化对象,对成员变量进行初始化,成员方法用于对成员变量进行多种操作。调用方式不同:构造方法只能通过new运算符调用,成员方法可以通过对象调用。