Re: enum types and casting

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 4/29/07, Shriramana Sharma <samjnaa@xxxxxxxxx> wrote:
Hello. Just now I learnt that enums can be very usefully used as types,
and was experimenting some with it. The following questions arose.

1. Are enums allowed as types only in C++ and not in C? gcc rejects
using an enum as a type whereas g++ accepts it.

As Leslie pointed out, you will have to declare variables of type
enumwith the enum keyword.

2.

Consider:

enum BODY { SUN, MOON, STAR } ;
enum PLANET { EARTH, VENUS, MARS, PLUTO } ;

int main ( void )
{
        BODY body ;
        // body = 1 ;         // gives error
        // body = EARTH ;     // gives error
        body = (BODY) 1 ;     // does not give error. expected.
        body = (BODY) EARTH ; // does not give error. expected.
        body = 3 ;            // does not give error. unexpected.
        body = (BODY) PLUTO ; // does not give error. unexpected.
}

When the target enum of the cast contains no name that has the same
integer value as the value being casted, how does g++ accept the cast?
Is this expected behaviour or a bug?

From the historical perspective, enums are implicitly converted to an
integral value whenever needed. And there __always__ is an integral
value to represent any enum value.  That's why assignments of integers
to variables of type enum are perfectly legal. So, for example, when
you compare two enum values, they are both converted to an integer.

However, assignment of an int to an enum variable leads to undefined
behavior if the enum is not large enough to store the integral value.
So, allowing the assignment of any integer, without casting, to a
variable of enum type, would be worse than the opposite.

To convert an integral type to an enumeration, use the following semantic:

enum TEST { zero = 0, one, two };
int i1 = 2;
test t1 = static_cast<TEST> (i1); // t1 == two

The same is true for casts between different enum types.

	\Steve

--

Steve Grägert <steve@xxxxxxxxxxxx>
Jabber    xmpp://graegerts@xxxxxxxxxx
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Assembler]     [Git]     [Kernel List]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [C Programming]     [Yosemite Campsites]     [Yosemite News]     [GCC Help]

  Powered by Linux