标签:
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; } }
标签:
原文地址:http://www.cnblogs.com/as1234as/p/5138279.html