已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
'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 } }
此頁面對您有幫助嗎?