书包:
该示例创建一个名为 bookpack 的包,其中包含一个用于管理书籍数据库的简单类。
图书类别:
它有私有属性 title、author 和 pubDate(标题、作者和出版日期)。
构造方法初始化属性。
show() 方法显示书籍详细信息。
BookDemo类:
创建一个包含 5 个 Book 对象的数组。
使用书籍信息填充数组并使用 show().
代码示例
目录结构:
src/ bookpack/ BookDemo.java
// Demonstração breve dos pacotes. package bookpack; class Book { private String title; private String author; private int pubDate; // Construtor Book(String t, String a, int d) { title = t; author = a; pubDate = d; } // Método para exibir os detalhes do livro void show() { System.out.println(title); System.out.println(author); System.out.println(pubDate); System.out.println(); } } // Classe para demonstrar o uso de Book class BookDemo { public static void main(String args[]) { Book books[] = new Book[5]; // Cria uma matriz de objetos Book // Preenche a matriz com diferentes livros books[0] = new Book("Java: A Beginner's Guide", "Schildt", 2014); books[1] = new Book("Java: The Complete Reference", "Schildt", 2014); books[2] = new Book("The Art of Java", "Schildt and Holmes", 2003); books[3] = new Book("Red Storm Rising", "Clancy", 1986); books[4] = new Book("On the Road", "Kerouac", 1955); // Exibe os detalhes de cada livro for (int i = 0; i编译执行
- 编译代码 从上面的 bookpack 目录中,使用以下命令编译文件:
javac bookpack/BookDemo.java
- 运行程序 使用以下命令从当前工作目录运行程序:
java bookpack.BookDemo重要说明:
预期输出:
Java: A Beginner's Guide Schildt 2014 Java: The Complete Reference Schildt 2014 The Art of Java Schildt and Holmes 2003 Red Storm Rising Clancy 1986 On the Road Kerouac 1955
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3