面向对象封装
//类 private 私有的
/*
1.提高了程序的安全性,保护数据
2.隐藏代码的实现细节
3.统一接口
4.系统可维护性增加
*/
public class Student {
//属性私有
private String name;//名字
private int age;//年龄
private char sex;//性别
//提供一些可以操作这些属性的方法
//提供一些public的get,set方法;
//get得到这个数据
public String getName(){
return this.name;
}
//set给这个数据设置值
public void setName(String name){
this.name=name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
if(age<120&&age>0){
this.age = age;
}else {
this.age=3;
}
}
public char getSex() {
return sex;
}
public void setSex(char sex) {
this.sex = sex;
}
}
/*
public static void main(String[] args) {
Student student = new Student();
student.setName("qq");
System.out.println(student.getName());
student.setAge(-1);//不合法
System.out.println(student.getAge());
}
*/