LoginSignup
1
2

More than 5 years have passed since last update.

python オブジェクティブプログラミングにおける重要な単語 メモ

Posted at

class :設計図. データとメソッドを保持する
instance:実体,オブジェクト
constructor: initのこと.インスタンスに関連するデータを初期化する
self:作成中のインスタンスを指す
instance variable :特定のインスタンスと関連した変数
アクセスするには,クラス内ではselfを使い,クラスの外ではインスタンス名を使う
instance method: selfを第一引数とするクラス内の関数

inheretent (継承)

1
2
1

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
1
2