コードを読む時に、どれが何を指しているのかゴチャゴチャして分からなくなるので、整理して理解しやすく。

メソッド呼び出し

   [ instanse method : argument ]

   [ Class method : argument ]

  ゲッター

   instance . variable

  セッター

   instance . variable = argument


メソッドの定義

   ( type ) method : ( type ) argument

   ( class ) method : ( class ) argument

コメント