0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Python】クラス・オブジェクト・インスタンス

Posted at

クラス・・・オブジェクトの設計図(テンプレート)のこと

オブジェクト・・・あるデータと、そのデータを処理する関数を一塊になっているもの。

オブジェクト
#あるデータ
names = ['田中', '鈴木']
#そのデータを処理する関数
names.append('山田')

インスタンス・・・クラス(設計図)に基づいて具体的なデータを持つオブジェクトが作られるたモノ

オブジェクトとインスタンスの違いが分からない…。
ということで、ChatGPTに聞いてみました。


Q.  オブジェクトとインスタンスの違いは?

A.  Pythonにおいて、「インスタンス」と「オブジェクト」は通常同じ意味として使用されます。つまり、クラスから生成された具体的なデータ構造を指す際にどちらの用語も使用できます。

ただし、厳密にはクラスとインスタンスを区別する立場も存在します。この立場に従うと、クラスがオブジェクトの設計図であり、インスタンスがその設計図に基づいて具体的に作成されたものとされます。この意味で、クラスとインスタンスは異なるものとされることがあります。

一方で、プログラミングコミュニティではしばしば「クラスのインスタンス」を「オブジェクト」と呼ぶことが一般的です。したがって、実際の開発で両者を同じ意味として使用しても問題ありません。

例えば、以下のコードでは「インスタンス」と「オブジェクト」を同じくらいの意味で使用しています:

class Person:
    def __init__(self, name):
        self.name = name

# Personクラスのインスタンス(オブジェクト)を作成
person_instance = Person("Alice")

# インスタンス(オブジェクト)の属性にアクセス
print(person_instance.name)  # 出力: Alice

このコードでは、person_instance は Person クラスのインスタンス(オブジェクト)です。両方の用語を同じくらいの意味で使用しており、一般的にはオブジェクト指向の文脈での使用方法として広く受け入れられています。

なんかよく分からない…。。。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?