共用方式為


編譯器警告 (層級 1) C4805

'operation':作業中不安全的混用類型 'type' 和類型 'type'

針對 bool int 之間的 比較作業,會產生此警告。下列範例會產生 C4805:

// C4805.cpp
// compile with: /W1
int main() {
   int i = 1;
   bool b = true;

   if (i == b) {   // C4805, comparing bool and int variables
   }
}