64 bit enum in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:59:21Z http://stackoverflow.com/feeds/question/76624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/76624/64-bit-enum-in-c 7 64 bit enum in C++? Rob 2008-09-16T20:28:33Z 2009-09-24T09:05:10Z <p>Is there a way to have a 64 bit enum in C++? Whilst refactoring some code I came across bunch of #defines which would be better as an enum, but being greater than 32 bit causes the compiler to error.</p> <p>For some reason I thought the following might work:</p> <pre><code>enum MY_ENUM : unsigned __int64 { LARGE_VALUE = 0x1000000000000000, }; </code></pre> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/76661#76661 0 Answer by Doug T. for 64 bit enum in C++? Doug T. 2008-09-16T20:30:32Z 2008-09-16T20:39:58Z <p>An enum in C++ can be any integral type. You can, for example, have an enum of chars. IE:</p> <pre><code>enum MY_ENUM { CHAR_VALUE = 'c', }; </code></pre> <p>I would <em>assume</em> this includes __int64. Try just</p> <pre><code>enum MY_ENUM { LARGE_VALUE = 0x1000000000000000, }; </code></pre> <p>According to my commenter, sixlettervariables, in C the base type will be an int always, while in C++ the base type is whatever is large enough to fit the largest included value. So both enums above should work.</p> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/76683#76683 7 Answer by Ferruccio for 64 bit enum in C++? Ferruccio 2008-09-16T20:32:14Z 2008-09-17T15:00:53Z <p>I don't think that's possible. The underlying representation of enums is up to the compiler. You are better off using:</p> <pre><code>const __int64 LARGE_VALUE = 0x1000000000000000L; </code></pre> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/76705#76705 1 Answer by Torlack for 64 bit enum in C++? Torlack 2008-09-16T20:34:00Z 2008-09-16T20:34:00Z <p>Since you are working in C++, another alternative might be </p> <pre><code>const __int64 LARVE_VALUE = ... </code></pre> <p>This can be specified in an H file.</p> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/76756#76756 0 Answer by Iulian Șerbănoiu for 64 bit enum in C++? Iulian Șerbănoiu 2008-09-16T20:37:58Z 2008-09-16T20:37:58Z <p>If the compiler doesn't support 64 bit enums by compilation flags or any other means I think there is no solution to this one.</p> <p>You could create something like in your sample something like:</p> <pre><code>namespace MyNamespace { const uint64 LARGE_VALUE = 0x1000000000000000; }; </code></pre> <p>and using it just like an enum using </p> <pre><code>MyNamespace::LARGE_VALUE </code></pre> <p>or </p> <pre><code>using MyNamespace; .... val = LARGE_VALUE; </code></pre> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/76757#76757 0 Answer by ugasoft for 64 bit enum in C++? ugasoft 2008-09-16T20:38:00Z 2008-09-16T20:38:00Z <p>your snipplet of code is not c++ standard:</p> <blockquote> <p>enum MY_ENUM : unsigned __int64 </p> </blockquote> <p>does not make sense.</p> <p>use const __int64 instead, as Torlack suggests</p> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/76980#76980 3 Answer by Leon Timmermans for 64 bit enum in C++? Leon Timmermans 2008-09-16T20:56:40Z 2008-09-16T20:56:40Z <p>Currently C++ doesn't support this. C++0X will support this, using this syntax:</p> <pre><code>enum class Enum2 : __int64 {Val1, Val2, val3}; </code></pre> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/81531#81531 0 Answer by MSalters for 64 bit enum in C++? MSalters 2008-09-17T09:42:45Z 2008-09-17T09:42:45Z <p>The answers refering to __int64 miss the problem. The enum <em>is</em> valid in C++ compilers that have a true 64 bit integral type. It only fails in compilers which lack such an integral type. Now, C++0x will likely have long long, which will make it work everywhere. </p> <p>Extensions to C++03 like __int64 work differently across compilers, including its suitability as a base type for enums. That's what you get with non-standard code</p> http://stackoverflow.com/questions/76624/64-bit-enum-in-c/1470527#1470527 0 Answer by Anonhelper for 64 bit enum in C++? Anonhelper 2009-09-24T09:05:10Z 2009-09-24T09:05:10Z <p>In MSVC++ you can do this: </p> <p>enum MYLONGLONGENUM:__int64 { BIG_KEY=0x3034303232303330, ... };</p>