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

リーダブルコード メモ #1

0
Last updated at Posted at 2019-12-23

名前に情報を詰める

  • sizeなどでは何のsizeかわからないから高さなどの情報を入れる変数にはheightなどとする。
  • getも同じ。
  • tmpは一時的な保管に使う。

名前に情報を追加する

  • htmlの文字コードをUTF-8に変えたというときなどに html → html_utf8とかく。
  • ただし、バグが起こりそうなところなどだけでok

名前の長さを決める

  • その名前が見えるコードの行数が小さければ名前は短くてもok
  • 長くてもok(補完機能があるから)
  • 見える行数が長ければ長い名前を付ける
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?