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.

オブジェクト指向の用語【個人的なお勉強アウトプット】

Last updated at Posted at 2022-03-18

クラスとは

設計図
属性(プロパティ)と操作(メソッド)が定義してある

インスタンスとは

クラスからできあがったもの
インスタンス化されたあとに属性設定や操作を行う

参考記事

メソッドとは

オブジェクト指向における「操作」を定義したもののこと
関数みたいなもの

参考記事

静的(スタティック)メソッドとは

クラスに対して呼び出し、どこで呼び出しても同じ処理を行う
https://prograshi.com/language/php/php-static-vs-instance/

動的(インスタンス)メソッドとは

インスタンスに対して呼び出し、インスタンス毎に固有の結果を返す

参考記事

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?