I though address-of-static was a constant expression as in the example below but I get a compiler error (or is this new to C++0x?)
class X {
static const int x;
enum { y = &x };
};
|
I though address-of-static was a constant expression as in the example below but I get a compiler error (or is this new to C++0x?)
| |||
|
feedback
|
|
Reading the 1998 standard, 5.19(1): "In several places, C++ requires expressions that evaluate to an integral or enumeration constant...as enumerator initializers (7.2)...." Further, "An integral constant-expression can involve only....In particular, except in Floating literals are explicitly listed as castable to integral or enumeration type, and nothing else is. Casting even an address constant expression to make an enumerator initializer was invalid from the first standard. | |||
|
feedback
|
|
Address of a variable (be it static or non-static) is not a compile-time constant. In fact, GCC gives very clear error message:
See yourself : http://ideone.com/FJk3C However, the following is allowed:
Don't confuse compile-time constants with runtime constants. They're two different things. | |||||||
feedback
|
|
It's a constant expression, but it can't be determined at compile time. The actual value of the address will depend on the region of memory that the executable ends up being loaded to by whatever OS loader is running the thing. Enum members need to have values that can be determined by the compiler. Cheers, | |||
|
feedback
|
|
The address of a static object is a constant expression, but
it's not an integral constant expression, because it doesn't
have an integral type. And As it stands, of course, the reason you're getting a compiler
error is that you're trying to initialize an | |||
|
feedback
|
|
The program is ill-formed because:
| ||||
|
feedback
|