namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
|
3
|
|
|
|
Yes -- the requirement is that it's an integral constant expression. The C++ standard includes the following example:
|
||||||
|
|
|
As pointed out by Jerry, it is legal. In some rare cases its wroth being aware that the type of the enumerators are only specified after the enumeration is fully defined. The standard says the following about the type of the enumerations (7.2/4):
The highlighted sentence can be shown in the following example:
Basically, the type chosen for |
||||
|

}. This is useful for C++ users, but slightly more complicated for C++ compiler builders. – MSalters Oct 27 at 9:40