memrootじしょ
英和翻訳
camelCaseNamingConvention
backlog
core issue
entry-level
Evaluative
unwillingly
trellis
window frame
failure analysis
hovering
camelCaseNamingConvention
[ˈkæməl keɪs ˈneɪmɪŋ kənˈvɛnʃən]
キャメルケースネイミングコンベンション
1.
プログラミングにおける命名規則の一つで、単語の区切りを大文字で示し、最初の単語の先頭は小文字で始める形式。
プログラミングにおいて、変数名や関数名などの識別子を命名する際に用いられる規則です。複数の単語を結合して名前を形成する際に、最初の単語の先頭は小文字にし、それ以降の単語の先頭は大文字にするのが特徴です。例えば、「firstName」や「calculateTotalAmount」などがこの形式に該当します。この規則は、コードの可読性を高めることを目的としています。
In
camelCaseNamingConvention,
the
first
letter
of
the
first
word
is
lowercase,
and
the
first
letter
of
subsequent
words
is
uppercase.
(キャメルケース命名規則では、最初の単語の最初の文字は小文字で、それに続く単語の最初の文字は大文字になります。)
In
~の中で、~において
camelCaseNamingConvention
キャメルケース命名規則
the first letter
最初の文字
of the first word
最初の単語の
is lowercase
は小文字です
and
そして
the first letter of subsequent words
それに続く単語の最初の文字
is uppercase
は大文字です
Many
programming
languages
adopt
camelCaseNamingConvention
for
variable
names.
(多くのプログラミング言語が変数名にキャメルケース命名規則を採用しています。)
Many programming languages
多くのプログラミング言語
adopt
採用する
camelCaseNamingConvention
キャメルケース命名規則
for variable names
変数名のために
Using
camelCaseNamingConvention
improves
code
readability
and
maintainability.
(キャメルケース命名規則を使用すると、コードの可読性と保守性が向上します。)
Using
使用すること
camelCaseNamingConvention
キャメルケース命名規則
improves
改善する、向上させる
code readability
コードの可読性
and maintainability
および保守性
関連
snake_case
PascalCase
kebab-case
naming convention
programming style guide
convention over configuration