パブリッククラスライブラリとしてクラスを作成しました
Library Books = new Library();
としてオブジェクトを作成しました
オブジェクトはクラスのメモリ表現です。
最も重要なオブジェクト名は大文字であってはなりません。
Java でオブジェクトを作成するには? {未定}
Java にはオブジェクトを作成する 5 つの方法が用意されています。
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"); } }
出力:
以上が拡張機能を備えた Java 基本プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。