编译器警告(等级 4)C4061

枚举数“identifier”(在枚举“enumeration”的 switch 中)没有被 case 标签显式处理

枚举在 switch 语句中无关联的处理程序。

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

下面的示例生成 C4061:

// C4061.cpp
// compile with: /W4
#pragma warning(default : 4061)

enum E { a, b, c };
void func ( E e )
{
   switch(e)
   {
      case a:
      case b:
      default:
         break;
   }   // C4061 c' not handled
}

int main()
{
}