编译器错误 C2196

case 值“value”已使用。

Switch 语句不止一次使用相同的 case 值。

下面的示例生成 C2196:

// C2196.cpp
int main() {
   int i = 0;
   switch( i ) {
   case 0:
      break;
   case 0:   // C2196
   // try the following line instead
   // case 1:
      break;
   }
}