package com.flowe.oop;
import com.flowe.oop.demo01.Student;
//一个项目只存在一个main方法
/*
1.提高程序的安全性,保护数据
2.隐藏代码的实现细节
3.统一接口
4.系统的可维护性增加
*/
public class Application {
public static void main(String[] args) {
//new 实例化一个对象
Student s1 = new Student();
s1.setName("flower");
System.out.println(s1.getName());
s1.setAge(-3);//不合法
System.out.println(s1.getAge());
}
}
package com.flowe.oop.demo01;
//类
public class Student {
//属性私有
private String name;//名字
private int id;//学号
private char sex;//性别
private int age;//年龄
//学习()
//睡觉()
//提供一些可以操作这些属性的方法
//public的get set方法
//get:设置这个属性
public String getName(){
return this.name;
}
//set:给这个数据设置值
public void setName(String name){
this.name = name;
}
public int getId() {
return id;
}
public char getSex() {
return sex;
}
public int getAge() {
return age;
}
public void setId(int id) {
this.id = id;
}
public void setSex(char sex) {
this.sex = sex;
}
public void setAge(int age) {
if(age<100||age>0) {
this.age = age;
}else{
this.age = 3;
}
}
//alt+insert:自动生成get set方法
}