1.自定义图书类

package lianxiti;

public class Book {

    private String title;
    private String author;
    private double price;
    
    public Book(String title,String author,double price){
        
        this.title=title;
        
        this.author=author;
        
        this.price=price;
    }
    public String getTitle(){
        return title;
    }
    public String getAuthor(){
        return author;
    }
    public double getPrice(){
        return price;
        
    }
}

 

posted on 2016-01-18 08:47  悠悠小花  阅读(209)  评论(0编辑  收藏  举报