0
1

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 3 years have passed since last update.

メソッド、クラス、オブジェクトの意味を整理

Posted at
  1. オブジェクト
    データと命令(メソッド)が一緒になっているもの。
    **データ.メソッド(引数1,引数2,・・・)**の形。

  2. クラス
    オブジェクトの設計図。
    オブジェクトがどのような設計図を持っていて、どのような振る舞いをするのかをクラスという形にまとめたもの。

  3. インスタンス
    クラスから作ったオブジェクトのこと。

  4. アトリビュート
    インスタンスが持つ変数のようなもの。
    インスタンス.アトリビュートのような形。

  5. メソッド
    データに紐付いて、データに対する処理や操作をする関数のこと。
    あくまでクラス内で定義された関数などを指す。
    単独で呼び出しできる関数とは違う。

参考資料
みんなのPython 第4版
関数とメソッドの違いとは(Pythonでわかりやすく説明)

0
1
2

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?