LoginSignup
0
0

More than 1 year has passed since last update.

プログラミング学習Ⅱ Day1(クラスとは)

Last updated at Posted at 2021-12-03

クラス

  • オブジェクトを定義する機能をクラスという
  • クラスから作成されたオブジェクトをインスタンスという
  • クラス内で関数を定義するとそれはメソッド。"."で表現する
  • l.append()もメソッド
  • クラスとインスタンスは別
  • クラスは定義をするだけ
  • 中身ができたものがインスタンス
class クラス名:
    ブロック
0
0
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
0