Pek buku:
Contoh mencipta pakej yang dipanggil bookpack, yang mengandungi kelas mudah untuk mengurus pangkalan data buku.
Kelas Buku:
Ia mempunyai tajuk atribut peribadi, pengarang dan pubDate (tajuk, pengarang dan tarikh penerbitan).
Kaedah pembina memulakan atribut.
kaedah show() memaparkan butiran buku.
Kelas BookDemo:
Mencipta tatasusunan 5 objek Buku.
Mengisi tatasusunan dengan maklumat buku dan memaparkan butiran menggunakan kaedah show().
Contoh Kod
Struktur Direktori:
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 < books.length; i++) { books[i].show(); } } }
Kompilasi dan Pelaksanaan
javac bookpack/BookDemo.java
java bookpack.BookDemo
Penjelasan Penting:
Output Jangkaan:
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
Atas ialah kandungan terperinci Contoh Pakej Ringkas. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!