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

📄 customer.java

📁 用jsp+servlet
💻 JAVA
字号:
package server;/** * A bank customer with a checking and savings account. */public class Customer {	/**	 * Constructs a customer with a given number and PIN.	 * 	 * @param aNumber	 *            the customer number	 * @param PIN	 *            the personal identification number	 */	public Customer(int aNumber, int aPin) {		customerNumber = aNumber;		pin = aPin;		checkingAccount = new BankAccount(aNumber, pin);		savingsAccount = new BankAccount(aNumber, pin);	}	/**	 * Tests if this customer matches a customer number and PIN.	 * 	 * @param aNumber	 *            a customer number	 * @param aPin	 *            a personal identification number	 * @return true if the customer number and PIN match	 */	public boolean match(int aNumber, int aPin) {		return customerNumber == aNumber && pin == aPin;	}	/**	 * Gets the checking account of this customer.	 * 	 * @return the checking account	 */	public BankAccount getCheckingAccount() {		return checkingAccount;	}	/**	 * Gets the savings account of this customer.	 * 	 * @return the checking account	 */	public BankAccount getSavingsAccount() {		return savingsAccount;	}	public int getCustomerNumber() {		return customerNumber;	}	public int getPin() {		return pin;	}	private int customerNumber;	private int pin;	private BankAccount checkingAccount;	private BankAccount savingsAccount;}

⌨️ 快捷键说明

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