CS.CONSTCOND.TERNARY

条件表达式的条件始终为 true 或始终为 false。

示例 1

复制
  class IntSize {
      void GetIntSize() {
          return (sizeof(int) > 4 ? sizeof(int) : 4);  // defect - the condition is constant
      }
  }

安全培训

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