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

命名規則(スネークケースとアッパーキャメルケース)でエラーになった経験

Posted at

命名規則(スネークケースとアッパーキャメルケース)でエラーになった経験

スネークケース

1.単語の区切りをアンダースコア「_」表す。
 admin_user_comment_creator
2.命名の対象
 メソッド名、変数名

アッパーキャメルケース

1.キャメルケースの一つで先頭から単語の区切りを大文字で表す。
 AdminUserCommentCreator
2.命名の対象
 クラス名

結論

 命名規則を間違えるとうまくコードを読み込んでもらえないので注意が必要。
 また、仮説・検証して解決しなければ命名規則誤り等のスペルミスを疑う。発見しづらいのでスペルミスの可能性も頭の片隅に入れてく。

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