首頁 > 後端開發 > C++ > `if (pointer)` 足以檢查 C 中指標的有效性嗎?

`if (pointer)` 足以檢查 C 中指標的有效性嗎?

DDD
發布: 2024-11-05 07:12:02
原創
552 人瀏覽過

Is `if (pointer)` Enough to Check Pointer Validity in C  ?

檢查指標值:if (pointer) 與if (pointer != NULL)

在C 中使用指標時,這一點至關重要以確定其有效性。是否可以簡單地使用表達式 if (pointer) 來測試指標是否為非 NULL?還是需要明確寫if(pointer != NULL)?

答案:

C標準允許你使用if(指標)來測試指標有效性。非空指標隱式轉換為 true,而空指標則隱式轉換為 false。此行為在 C 11 標準的布林轉換部分中定義:

<code class="cpp">A prvalue of arithmetic, unscoped enumeration, pointer, or pointer to member type can be converted to a
prvalue of type bool. A zero value, null pointer value, or null member pointer value is converted to
false; any other value is converted to true. A prvalue of type std::nullptr_t can be converted to a prvalue of
type bool; the resulting value is false.</code>
登入後複製

因此,您可以安全地編寫 if(指標)來檢查指標是否為非 NULL。但是,為了清晰和一致,建議適當使用明確的 if (pointer != NULL) 或 if (pointer) 構造。

以上是`if (pointer)` 足以檢查 C 中指標的有效性嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板