std::numeric_limits::max() std::numeric_limits::min()編譯錯誤
【原文:http://blog.csdn.net/manyikaimen/article/details/51565321】
今天使用了一下STL中的z數值極限竟然編譯不過,
std::numeric_limits::max()
出現如下錯誤:
warning C4003: “max”巨集的實參不足
error C2589: “(” : “::”右邊的非法標記
error C2589: “(” : “::”右邊的非法標記
google了一下,原來是需要把max用括號括起來避免和windows定義的巨集混淆
(std::numeric_limits::max)()
因為Windef.h中定義了
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
所以會產生編譯錯誤
相關文章
- 詭異!std::bind in std::bind 編譯失敗編譯
- std::sort 錯誤"Expression : invalid operator <"Express
- c++11:std::boolalpha、std::noboolalphaC++
- std::vector 和 std::list 區別
- 關於vs2022出現"__std_max_element_4","__std_init_once_link_alternate_names_and_abort"兩個檔案連結錯誤
- std::reserve和std::resize的區別
- `std::packaged_task`、`std::thread` 和 `std::async` 的區別與聯絡Packagethread
- C++11 std::bind std::function 高階用法C++Function
- libtorch使用model.forward報std::runtime_error錯誤ForwardError
- 【C++併發實戰】(三) std::future和std::promiseC++Promise
- C++ 標準庫 std::set std::multiset swap()的使用C++
- ODRDMS_GOV_STDGo
- std::count 函式函式
- C++(std::vector)C++
- (C++11/14/17學習筆記):std::atomic續、std::async與std::thread對比C++筆記thread
- 【譯】對Rust中的std::io::Error的研究RustError
- c++11:std::bindC++
- std::map initializer list syntax ?
- std::remove_if 介紹REM
- std::tr1::functionFunction
- (不要)使用std::threadthread
- std::function用法學習Function
- std::make_shared
- VS 編譯錯誤編譯
- 透徹理解C++11新特性:右值引用、std::move、std::forwardC++Forward
- 智慧指標思想實踐(std::unique_ptr, std::shared_ptr)指標
- error C4996: 'std::_Uninitialized_copy0':與錯誤 LNK2001 無法解析的外部符號 "private: static class std::allocatorError996Zed符號
- c++ std::vector 切記C++
- c++11:std::is_sameC++
- 理解 std::declval 和 decltype
- std::async的使用總結
- ipvs編譯錯誤編譯
- php編譯小錯誤PHP編譯
- 編譯PHP的錯誤編譯PHP
- C++ 智慧指標詳解: std::unique_ptr 和 std::shared_ptrC++指標
- MAX or MIN of Indexed ColumnIndex
- min(), max()和indexIndex
- std::string的工具函式函式