Advertisement

KFC点餐系统小程序

阅读量:
复制代码
 package KFC点餐系统;

    
 //food 类 
    
 public class Kfcfood {
    
 	
    
 	private String fname ;
    
 	private int fnumb=1;
    
 	private float fPrice;
    
 	
    
 	public Kfcfood() {
    
 		super();
    
 	}
    
 	
    
 	public Kfcfood(String fname, int fnumb, float fPrice) {
    
 		super();
    
 		this.fname = fname;
    
 		this.fnumb = fnumb;
    
 		this.fPrice = fPrice;
    
 	}
    
  
    
 	public String getFname() {
    
 		return fname;
    
 	}
    
 	public void setFname(String fname) {
    
 		this.fname = fname;
    
 	}
    
 	public int getFnumb() {
    
 		r

全部评论 (0)

还没有任何评论哟~