编写book.java_编写一个javabean命名为:Book.java属性包括:
时间: 2024-03-05 13:48:43 浏览: 78
好的,下面是一个简单的 Book.java 的实现:
```java
public class Book {
private int id;
private String title;
private String author;
private double price;
// 构造方法
public Book(int id, String title, String author, double price) {
this.id = id;
this.title = title;
this.author = author;
this.price = price;
}
// getter 和 setter 方法
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
}
```
这个 Book 类有四个属性:id、title、author 和 price。它们都是私有的,可以通过 getter 和 setter 方法访问。构造方法接受这四个属性的值作为参数,并将它们分别赋值给相应的属性。
阅读全文