Something that I haven't seen anyone mention is that even fully parenthesizing the macro definitions doesn't completely solve the problem.
The question has:
#define BIG_INTERVAL 60 * 60 * 1000
(and the questioner acknowledges that the lack of parentheses is a problem). But even with:
#define BIG_INTERVAL (60 * 60 * 1000)
each of the constants (60, 60, and 1000) is definitely representable as an int, but the product is 3600000, whereas the language only guarantees that INT_MAX >= 32767.
The language says that large integer constants are of a type big enough to hold their values (for example, 100000 can be either of type int or of type long int, depending on the ranges of those types), but it has no such rule for expressions, even constant expressions.
You can work around this like this:
#define BIG_INTERVAL (60L * 60L * 1000L)
but that makes it of type long even if it doesn't need to be.
As for the operator precedence issue, here's my favorite example:
#include <stdio.h>
#define SIX 1+5
#define NINE 8+1
int main(void)
{
printf("%d * %d = %d\n", SIX, NINE, SIX * NINE);
return 0;
}
The output, of course, is
6 * 9 = 42
(see Douglas Adams).
#definefor constants. – jalf Jul 14 '11 at 6:20static const int, or perhaps an enum)? – jalf Jul 14 '11 at 6:50#define for_all( iterator_t, it, container ) for ( iterator_t it = (container).begin(); it != (container).end(); ++it ), that is used as:for_all( std::vector<int>::const_iterator, it, v ) std::cout << *it;simple... right? – David Rodríguez - dribeas Jul 14 '11 at 7:28