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

📄 orderitem.java

📁 SSD3 卡耐基梅隆大学教程 全部的参考答案啦`!不用账号下载哦`
💻 JAVA
字号:

public class OrderItem {
	private Product product;
	private int quantity;
	public OrderItem(Product initialProduct , int initialQuantity){
		this.product = initialProduct;
		this.quantity = initialQuantity;
	}
	public Product getProduct(){
		return this.product;
	}
	public int getQuantity(){
		return this.quantity;
	}
	public void setQuantity(int newQuantity){
		this.quantity = newQuantity;
	}
	public double getValue(){
		return getQuantity()*product.getPrice();
	}
	public String toString(){
		return getQuantity()+" "+product.getCode()+" "+product.getPrice();
	}
}

⌨️ 快捷键说明

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