クラスとオブジェクト:
クラスとオブジェクトは、現実世界の概念とエンティティを表すために使用されるオブジェクト指向プログラミング (oops) の基本概念です。[]
このクラスは、同様のプロパティと動作を持つオブジェクトのグループを表します。
例:
動物タイプの犬:
DOG はクラスですが、TOMMY という名前の特定の犬はその犬のオブジェクトです。
クラス:
Java のクラスは、共通の特性/動作と共通のプロパティ/属性を共有するオブジェクトのセットです。
これは、オブジェクトの作成元となるユーザー定義のブループリント プロトタイプです。
クラスは作成時にメモリを割り当てません。
クラスは class キーワード
を使用して宣言されています
クラス従業員{}
クラスを定義する唯一の方法は、class キーワードを使用することです。
例:
STUDENT はクラスですが、RAVI という名前の特定の学生はオブジェクトです。
オブジェクト:
オブジェクトは物理的なエンティティであると言われ、クラスを表します。
オブジェクトは、現実のエンティティとクラスのメモリ参照を表します。
オブジェクトは、クラスの属性とメソッドを使用するために作成されるクラスのインスタンスです。Java プログラムは多くのオブジェクトを作成します。
オブジェクトは状態、動作、アイデンティティで構成されます。
オブジェクトの作成:
オブジェクトは new キーワードを通じて作成されます。
従業員ob=新入社員();
1.Java でオブジェクトを作成する方法
The object is a basic building block of an object oriented language(oops). In Java, we cannot execute any program without creating an object. There is various way to create an object in Java that we will discuss in this section, and also learn how to create an object in Java.
Java にはオブジェクトを作成する 5 つの方法が用意されています。
Using new Keyword Using clone() method Using new Instance() method of the Class class Using new Instance() method of the Constructor class Using deserialization
2.Java でのメソッドの呼び出し方法:
A method in Java is a group of statements that carry out a certain action or function. It is commonly used because it enables code reuse, which refers to the ability to write code once and use it multiple times.
Java でメソッドを呼び出すには、次の基本的な手順に従う必要があります。
Define the method: This includes giving the method a name, specifying any arguments that it takes, and defining what the method should do when it is called. Create an instance of the class: If the method you want to call is part of a class, you need to create an instance of that class. Call the method: Once you have an instance of the class (if necessary), you can use the name of the method, followed by any arguments that the method takes (if any) to call the method.
Java でのメソッドの定義方法:
To define a method in Java, you need to declare it within a class. The following elements in the method declaration:
Return type: The data type of the value the method returns, or void if it doesn't return a value Method name: The name of the method Parentheses: A pair of parentheses, () Method body: The code for the method, enclosed in braces, {}
メソッド宣言に含めることができるその他の要素は次のとおりです:
Modifiers: Such as public or private Parameter list: A comma-delimited list of input parameters, preceded by their data types Exception list: An exception list
プログラムタスク:
以上がJavaのクラスとオブジェクト:の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。