C++ #error 的使用方法

| 0 Comments| | 01:51
Categories:

#error 指示詞會在編譯時期發出使用者指定的錯誤訊息並結束編輯。

C++ 使用例一:

#if !defined(__cplusplus)
#error C++ compiler required.
#endif

C++ 使用例二:

#ifndef _M_AMD64
#error Only working for x64 environment.
#endif

ref: #error directive (C/C++)

#C/C++ #coding #programming

Leave a Reply

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *