编译器警告(等级 3)C4062

枚举数“identifier”在枚举“enumeration”的 switch 中没有被处理

枚举在 switch 语句中无关联的处理程序,并且无 default 标签。

默认情况下关闭此警告。 有关更多信息,请参见默认情况下处于关闭状态的编译器警告

下面的示例生成 C4062:

// C4062.cpp
// compile with: /W3
#pragma warning(default : 4062)
enum E { a, b, c };
void func ( E e ) {
   switch(e) {
      case a:
      case b:
      break;   // no default label
   }   // C4062, enumerate 'c' not handled
}

int main() {
}