vote up 2 vote down star

A frequent issue in code reviews is whether a numeric value should be hard-coded in the code or not. Does anyone know of a nice regular expression that can catch 'magic numbers' in code like:

int overDue = 30;
Money fee = new Money(5.25D);

without also getting a ton of false positives like for loop initialization code?

for (int i = 0; i < array.length; i++) {

}
flag

62% accept rate
Any reason why you wouldn't use a tool like FxCop to do this for you? – Bob Dec 3 '08 at 15:14
What would you do with a case like a = b * 20? What if a is final or constant? – Loki Dec 3 '08 at 17:44
If you want to identify cases like the overDue example you're going to need to write an entire English language parser (assuming the correction would be to rename the variable to daysOverDue). I don't see anything inherently wrong with setting a variable to a value... – emddudley Jul 26 at 2:58

4 Answers

vote up 10 vote down check

A better question would be about asking what tools do that. And the answer would be:

  • Checkstyle
  • FxCop

And many more static code analysis tools.

link|flag
Agreed. We are using PMD and FindBugs but it doesn't seem to flag these. I'll look at Checkstyle. I was hoping to create the rule in PMD. – Brian Dec 3 '08 at 16:42
vote up 1 vote down

Other than using a pre-built code analysis tool, the common approach is to look for all numbers outside a certain range. For example all number larger than 5 and lower than -5. You'll find that doing this gets rid of the majority of false positives. If you want to be more aggressive you can use 3 instead of 5, but you'll get more false positives...

link|flag
vote up 0 vote down

For Java I'd get FindBugs and then write a custom bug detector for it to do that checking you need. For more info on writing a custom bug detector see this link.

link|flag
vote up 0 vote down

Here's a simple regex I use to scan for magic numbers in a large PHP project:

[^'"\w]-[1-9]\d*[^'"\w]

This will include any number != 0 that's not surrounded by single or double quotes or letters. Tweak for your own needs as desired.

link|flag

Your Answer

Get an OpenID
or

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