Eine Klasse als öffentliche Klassenbibliothek erstellt
Erstellt ein Objekt als Bibliotheksbücher = neue Bibliothek();
Objekt ist eine Speicherdarstellung der Klasse.
Der Name des wichtigsten Objekts sollte nicht in Großbuchstaben geschrieben werden.
Wie erstelle ich ein Objekt in Java? {TBD}
Java bietet fünf Möglichkeiten zum Erstellen eines Objekts.
Using new Keyword Using clone() method Using newInstance() method of the Class class Using newInstance() method of the Constructor class Using Deserialization
Code:
public class Library { public static void main(String[] args) { Library books = new Library(); //Object Creation //new allocates memory - Instance - Instantiation books.fiction(); //Method Calling Statement Library librarian = new Library(); librarian.lending_books(); } public void fiction() //Method Signature { //Method Definition / Body System.out.println("Book Name:Fiction books"); } public void lending_books() //Method Signature { //Method Definition / Body System.out.println("Librarian:Successfully lended the books"); } }
Ausgabe:
Das obige ist der detaillierte Inhalt vonJava-Basisprogramm mit Erweiterung. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!