用JAVA创建一个类,要求有成员函数和变量,构造函数,要使用这个类创建对象。

跪求
2024-11-16 03:22:35
推荐回答(1个)
回答1:

public class Book {

    private String title;
    private int pageNum;
    private String type;

    public Book(String title, int pageNum, String type) {
        this.title = title;
        this.pageNum = pageNum;
        this.type = type;
    }

    public void detail()
    {
        System.out.println(this.title+","+this.pageNum+","+this.type);
    }
}

public class BookTest
{
    public static void main(String[] args) {
        Book book = new Book("java编程",190,"计算机");
        book.detail();
    }

}