今天主要学习了一下 java 中 get 和 set 函数的使用情况
public class Person {
// 私有变量
private String name;
private int age;
// Getter 方法
public String getName() {
return name;
}
public int getAge() {
return age;
}
// Setter 方法
public void setName(String name) {
this.name = name;
}
public void setAge(int age) {
if (age >= 0) { // 进行数据验证
this.age = age;
} else {
System.out.println("年龄不能为负数");
}
}
}
解释:
创建了一个 Person 类,它有两个私有变量:age 和 name。 简单的验证:年龄不能为负数。这提高了对象状态的安全性。
使用示例:
来访问和修改对象的属性
public class Main {
public static void main(String[] args) {
Person person = new Person();
// 使用 Setter 设置值
person.setName("Alice");
person.setAge(25);
// 使用 Getter 获取值
System.out.println("姓名: " + person.getName());
System.out.println("年龄: " + person.getAge());
// 测试年龄验证
person.setAge(-5); // 输出: 年龄不能为负数
}
}
标签:开学,name,Person,age,person,日志,public,String From: https://www.cnblogs.com/fanxn/p/18415504