Création d'une classe en tant que bibliothèque de classe publique
Création d'un objet en tant que Library books = new Library();
L'objet est une représentation mémoire de la classe.
Le nom de l'objet le plus important ne doit pas être en majuscule.
Comment créer un objet en Java ? {À déterminer}}
Java propose cinq façons de créer un objet.
Using new Keyword Using clone() method Using newInstance() method of the Class class Using newInstance() method of the Constructor class Using Deserialization
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"); } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!