ホームページ > Java > &#&チュートリアル > Javaのクラスとオブジェクト:

Javaのクラスとオブジェクト:

Mary-Kate Olsen
リリース: 2024-12-30 15:28:14
オリジナル
674 人が閲覧しました

クラスとオブジェクト:
クラスとオブジェクトは、現実世界の概念とエンティティを表すために使用されるオブジェクト指向プログラミング (oops) の基本概念です。[]
このクラスは、同様のプロパティと動作を持つオブジェクトのグループを表します。

例:
動物タイプの犬:
DOG はクラスですが、TOMMY という名前の特定の犬はその犬のオブジェクトです。

クラス:
Java のクラスは、共通の特性/動作と共通のプロパティ/属性を共有するオブジェクトのセットです。
これは、オブジェクトの作成元となるユーザー定義のブループリント プロトタイプです。
クラスは作成時にメモリを割り当てません。
クラスは class キーワード
を使用して宣言されています クラス従業員{}
クラスを定義する唯一の方法は、class キーワードを使用することです。

例:
STUDENT はクラスですが、RAVI という名前の特定の学生はオブジェクトです。
オブジェクト:
オブジェクトは物理的なエンティティであると言われ、クラスを表します。
オブジェクトは、現実のエンティティとクラスのメモリ参照を表します。
オブジェクトは、クラスの属性とメソッドを使用するために作成されるクラスのインスタンスです。Java プログラムは多くのオブジェクトを作成します。
オブジェクトは状態、動作、アイデンティティで構成されます。

  • 例:
  • オブジェクト:DOG の例
  • 正体 -- 犬の名前
  • 状態/属性 -- 年齢、色、品種
  • 行動 -- 吠える、寝る、食べる

オブジェクトの作成:
オブジェクトは 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: 
ログイン後にコピー

class and object in java:

    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
ログイン後にコピー

プログラムタスク:

class and object in java:

以上がJavaのクラスとオブジェクト:の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート