Re: proposed shortcut syntax for referring to enum members in special contexts
"Ulrich Eckhardt" <doomster@knuut.de>
jonathan.david.61344@gmail.com wrote:
With enum classes, the compiler should be intelligent enough to
extract an enums scope from the context.
There is ADL (aka K?nig-lookup).
ADL does not work for the most regular use cases.
Suppose Colors is an enum class with the expected members (Red,
Green,...). What I propose is outlined in the following code.
[...]
struct X
{
Colors c;
X() : c(Magenta) {}
// Compiler detects that we are assigning to an instance
// of Colors, and adds the Colors:: part automatically
};
A better example woulf be:
struct X {
enum Colors {red, green, blue};
void setColor( Colors c);
};
usage:
X x;
x.setColor(X::red); // needed now
x.setColor(red); // would be intuitive and cool
Stop. If you think that the right syntax was "Colors::Magenta", you have
fallen in for a compiler-extension specific to Microsoft's. The constants
of an enumeration are actually defined in the same scope as the
enumeration
type itself, not(!) nested in the enumeration. This behaviour is inherited
from C.
Can't recall Microsoft doing it differently...
Hence also the suggestion to namespace enumerations manually, e.g. like
this:
namespace colour {
enum type { orange, green, magenta };
}
My experience shows many enums at the class level, that are part of the
interface and must be used by clients. Putting them outside, in the
namespace (or global) would be bad. And using the prefixes is annoying.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]