book.java

来自「《jsp编程起步》里面的所有源代码」· Java 代码 · 共 42 行

JAVA
42
字号
package myBean;

public class Book{
	long	Id;
	String	Name;
	String	Category;
	float	Price;
	
	public Book(){
		Id=0;
		Name="";
		Category="";
		Price=0f;
	}
	
	public void setId(long id){
		this.Id=id;
	}
	public long getId(){
		return this.Id;
	}
	public void setName(String name){
		this.Name=name;
	}
	public String getName(){
		return this.Name;	
	}
	public void setCategory(String category){
		this.Category=category;
	}
	public String getCategory(){
		return this.Category;
	}
	
	public void setPrice(float price){
		this.Price=price;
	}
	
	public float getPrice(){
		return this.Price;
	}
}

⌨️ 快捷键说明

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