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

クラスやメソッド、変数における名前の単語の区切り方

Last updated at Posted at 2020-09-28

##疑問
 クラスやメソッド、変数の名前をつける時に、単語の区切り方の違いが分からない

##結論
 クラスにはアッパーキャメルケースを使い、メソッドや変数にはスネークケースを用いる。

##説明
(ex)
「 user tweet creator」という名前を付けたい時を例にする

・クラスに命名する時
UserTweetCreator
というように命名する

・メソッドや変数に命名する時
user_tweet_creator
というように命名する

つまり、
アッパーキャメルケース
 初めの文字を大文字にし、単語の区切りを大文字で表す

スネークケース
 単語の区切りを_で表す

となります。メソッドや変数はスネークケースを使用かつ、全て小文字となります。

##まとめ
命名規則を守ることで、チームの方達との、コードの意味の伝達が円滑になると思いますので、
参考にして、いただけると幸いです。

*ちなみにカラム名もスネークケースを用います。

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?