私有变量需要对外提供访问方式
子类通过get或set方法访问 如果有子类继承下面的代码 就可以通过get和set方法访问
package com.itheima;
public class Test5 {
/**
* 题目:定义一个学生类, 需要有姓名, 年龄, 考试成绩三个成员属性.
* 属性(成员变量)需要私有并提供get, set方法, 可以通过构造函数进行初始化.
*/
private String StudentName; // 学生姓名
private int StudentAge; // 学生年龄
private String StudentScore; // 考试成绩
//空参数的构造函数
public Test5() {
}
//构造方法
public Test5(String studentName, int studentAge, String studentScore) {
super();
StudentName = studentName;
StudentAge = studentAge;
StudentScore = studentScore;
}
public String getStudentName() {
return StudentName;
}
public void setStudentName(String studentName) {
StudentName = studentName;
}
public int getStudentAge() {
return StudentAge;
}
public void setStudentAge(int studentAge) {
StudentAge = studentAge;
}
public String getStudentScore() {
return StudentScore;
}
public void setStudentScore(String studentScore) {
StudentScore = studentScore;
}
public static void main(String []args){
Test5 t=new Test5("张三",20,"优秀");//初始化
System.out.println("----姓名:"+t.StudentName+"----年龄:"+t.StudentAge+"-----成绩:"+t.StudentScore+"-----");
}
}
|