I was looking at this SO question and got to thinking about const ints versus #defines and realized I don't actually understand why the compiler can't deal with this. Could someone shed some light as to why the following code

const int FOO = 10;

int main(int argc, char** argv)
{
    switch(argc)
    {
        case FOO: { printf("foo\n"); }
        default:  { printf("default\n"); }
    }
}

results in

error: case label does not reduce to an integer constant

I read the ISO-C99 spec which states in 6.8.4.2.3 that

The expression of each case label shall be an integer constant expression and no two of the case constant expressions in the same switch statement shall have the same value after conversion.

I understand why the case expression must be constant, but not why only a literal makes the compiler (gcc 4.2.1) happy.

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

A constant expression is not the same as a const-qualified type value, even though technically the value is known by the compiler at the point of the case statement.

Imagine what would happen if another file declared extern const int FOO and tried to use it the same way. The compiler wouldn't know what FOO was because it was defined in another file. Even though it has a constant value, it is not a constant expression.

link|improve this answer
1  
Ah. Thanks for the extern example. Super clear. – nall Nov 11 '09 at 3:19
9  
extern example doesn't make anyting clear and doesn't really explain anything. In C++ language you can also declate an extern constant, just like in C, yet in C++ it is perfectly legal to use const int objects in constant expressions, including case labels (not extern ones, of course). The only true answer to the original question is that it was done that way historically. From the very beginning in C the term "constant" meant literal numerical values, not const objects. Why? Just because. – AndreyT Nov 11 '09 at 4:48
Well, the extern example was the one I couldn't come up with that the compiler couldn't deal with. Your comment is valuable, though. Thanks. – nall Nov 11 '09 at 4:51
So, is there no way to avoid using magic numbers in case statements? – Answerbot Jan 17 '11 at 22:53
@Harkonian: You could use preprocessor macros, i.e. #define FOO 10. – dreamlax Jan 17 '11 at 23:24
show 1 more comment
feedback

This isn't really an answer but I found this weird related behavior that may shed some light on the issue, or not:

switch ((int)(x * 10)) {
case (int)(2 * 10): break;   // Compiler is OK with this
case (int)(1.1 * 10): break; // Compiler is NOT OK with this
}

This seems really contradictory to me. They both seem like constant expressions with integer results to me. The values are known at compile time. What's the problem?

The reason I wanted to do this was because I want to switch on some numbers that can possibly have a single digit after the decimal.

I tried this on g++ v4.5.2.

link|improve this answer
2  
Better ask a real question rather than post an answer to some minimally related question. Anyway ... what is 1.1 * 10? is it 11.000000000000000873264832 or 10.9999999999999984236? – pmg Jun 18 '11 at 10:42
1  
That doesn't matter when you apply the rounding rules. Thanks for the morality lesson. – jcoffland Jun 21 '11 at 0:38
Actually pmg has a very valid point. The way floating point numbers are stored in memory is implementation specific so you cannot say with 100% certainty that it is one or the other. The binary representation could mean something quite different in a double-wide form, for example. – Huckle Feb 7 at 3:10
feedback

Your Answer

 
or
required, but never shown

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