The standard abbreviations for decibels is "dB" (note the case!)

So, if I have a variable, holding (for instance) a maximum dB value, how best to name it?

  1. maxDbValue
  2. maxdBValue
  3. maxDecibelValue
  4. something else?

Each has disdvantages - #1 swaps the case of the unit, #2 doesn't clearly split max from dB, and #3 is verbose...

I think #1 feels best, but...???

link|improve this question

76% accept rate
6  
IMHO, you should use maxDecibelValue. It makes it much clearer to anyone reading your code as they would be likely to think Db means database instead of decibel. – Thomas May 24 '10 at 21:09
@Thomas, good point, but the context of the code means there's very little scope for such confusion. – Roddy May 24 '10 at 21:17
@Thomas: well... I guess it depends on the context. If it is a sound manipulation app it would not be so counterintuitive to read dB as decibel rather than database. In a case like this I would go for #2 anyway. – nico May 24 '10 at 21:17
@nico - IMO, sacrificing a little extra typing is insignificant compared the clarity of naming. Assuming the IDE provides autocomplete and intellisense, the sacrific of five additional characters seems small to me. – Thomas May 24 '10 at 21:19
I'll jump on the bandwagon and prefer #3 among the offered choices, but being a bit Old-Skool, I might humbly point out the existence of '_' for use in variable names. max_dB_value might look a bit out of place in your existing code, but it does work. – wrosecrans Jul 24 '10 at 1:46
feedback

4 Answers

up vote 4 down vote accepted

I like #3: maxDecibelValue. It also prevents confusion with DB representing "Database."

link|improve this answer
feedback

I would use maxVolume.

If I had to use one of yours, it would be maxDecibelValue.

Also, if it is a constant, it shouldn't be camelcase, it should be all caps, as in MAX_DECIBEL_VALUE.

link|improve this answer
+100 - solves the problem so easily... – cjk May 24 '10 at 21:10
Plus- do actually know "decibels", or is it a more-arbitrary volume setting? The APIs that I'm familiar with make no mention of decibels directly since the underlying hardware is going to be doing a lot more than taking the value that I give it... – dash-tom-bang May 24 '10 at 21:12
2  
"volume" isn't sufficiently self-descriptive. (and no, it's not a constant). – Roddy May 24 '10 at 21:13
Oh yes, I know it's decibels - This is too wonky a requirement for APIs to have much to do with it :-~ – Roddy May 24 '10 at 21:15
1  
@glowcoder, the naming convention you deride might have prevented at least one distaster if it were used: en.wikipedia.org/wiki/… – Mark Ransom May 24 '10 at 22:37
show 3 more comments
feedback

In this case, (pun not intended) the capitalization you choose for the abbreviation matters less than the gigantic body of code out there that associates 'db' with 'database'. Normally commenting variable names is a code-smell but you have an exception on your hands. If you use either #1 or #2, you might want to leave a comment to clarify what 'db' really means.

//measured in dB 

or

//sound measurement 

This is why you'll see the preference for maxDecibelValue.

Either way, I'd recommend you use whatever annotation system your language/IDE has to provide a flyover/tool-tip/etc. for the places the variable is used. That way to won't have to find the declaration to understand the name.

link|improve this answer
feedback

I suggest to create a new type, Decibel, and then use, as glowcoder suggested, maxVolume such that the line will read:

Decibel maxVolume

It's convention not to mix name with it's type. Clearly Decibel is a type.

Working with an application that mixes units, for instance Celsius, Fahrenheit and Kelvin, what would the following mean:

temperature

Also then I suggest using the type:

Celsius temperature
or
Kelvin temperature
or
Fahrenheit temperature

The type Decibel can now also contain some helper-methods; for instance, Decibel is a logarithmic unit, so you can provide some basic arithmetic function for it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.