CS.CONSTCOND.SWITCH

“switch”语句的条件为常量。

示例 1

复制
  class Foo {
      void Method() {
          switch(3 + 2)   // defect - the condition is constant
          {  
              /* ...*/
          }
      }
  }

安全培训

应用程序安全培训材料由 Secure Code Warrior 提供。