⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 salariedworker.java

📁 国外的数据结构与算法分析用书
💻 JAVA
字号:
/**	A class for an Employee with a weekly salary. */
public class SalariedWorker extends Employee
{
	/**	Weekly salary of the Employee. */
	int weeklySalary;

	/**	Constructor that initializes the name, address, and Employee number. */
	public SalariedWorker(String n, String a, int e, int w)
	{
		super(n, a, e);
		weeklySalary = w;
	}

	/**	String representation of the Employee information and weekly salary. */
	public String toString()
	{
		return super.toString() + "Employee salary: $" + weeklySalary + "\n";
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -