N3290 ISO 标准草案第 3.4.1/12 节中的一点:



这是添加的新点,任何人都可以用一个例子(就一个例子而言)来解释这一点吗?

最佳答案

让我们有一些代码:

struct X {};

enum Foo
{
  X = 0,
  Y,
  Z = X // X refers to the enum, not the type
};

关于c++ - 来自 C++0x 草案的一点 : n3290,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6120348/

10-12 01:03