Java Getter方法返回类对象

本文探讨了Java中Getter方法返回类对象时,如何处理对象引用的问题。通过示例展示了对象的引用传递特性,解释了为何修改通过Getter获取的对象属性不会影响原对象的属性值。
摘要由CSDN通过智能技术生成

首先创建一个类:

/**
 * 雇员类
 * @author yifan
 * @version 1.0 2014-05-12
 */
class Employ {
	/**
	 * 构建一个新的职员类
	 * @param name 职员姓名
	 * @param salary 工资
	 * @param hireDate 入职时间
	 */
	public Employ (String name, double salary, Date hireDate) {
		this.name = name;
		this.salary = salary;
		this.hireDate = hireDate;
	}
	/**
	 * 获取姓名
	 * @return 姓名
	 */
	public String getName() {
		return this.name;
	}
	/**
	 * 获取当前工资
	 * @return 当前工资
	 */
	public double getSalary() {
		return this.salary;
	}
	/**
	 * 安全的获取入职时间
	 * @return 入职时间
	 */
	public Date getHireDate() {
		return (Date) this.hireDate.clone();
	}
	/**
	 * 非安全的获取入职时间
	 * @return
	 */
	public Date gethireDate() {
		return this.hireDate;
	}
	
	/**
	 * 提高工资
	 * @param byPercent 提高的系数
	 */
	public void raiseSalary (double byPercent) {
		this.salary += this.salary*byPercent/100;
	}
	private String name;
	private double salary;
	priv
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值