warning C4003 and errors C2589 and C2059 on: x = std::numeric_limitslt;intgt;::max();(警告 C4003 以及错误 C2589 和 C2059 在:x = std::numeric_limitsint::max();)
问题描述
此行在一个小型测试程序中正常工作,但在我想要的程序中,我收到以下编译器投诉:
This line works correctly in a small test program, but in the program for which I want it, I get the following compiler complaints:
#include <limits>
x = std::numeric_limits<int>::max();
c:...x.cpp(192) : warning C4003: not enough actual parameters for macro 'max'
c:...x.cpp(192) : error C2589: '(' : illegal token on right side of '::'
c:...x.cpp(192) : error C2059: syntax error : '::'
我得到了相同的结果:
#include <limits>
using namespace std;
x = numeric_limits<int>::max();
为什么将 max 视为宏 max(a,b);?
Why is it seeing max as the macro max(a,b); ?
推荐答案
当包含定义 min 或 max 宏的 Windows 标头时,通常会发生这种情况.如果您使用的是 Windows 标头,请将 #define NOMINMAX 放入您的代码中,或者使用等效的编译器开关进行构建(即,对于 Visual Studio,使用 /DNOMINMAX).
This commonly occurs when including a Windows header that defines a min or max macro. If you're using Windows headers, put #define NOMINMAX in your code, or build with the equivalent compiler switch (i.e. use /DNOMINMAX for Visual Studio).
请注意,使用 NOMINMAX 构建会禁止在整个程序中使用宏.如果需要使用 min 或 max 操作,请使用 std::min() 或 std::max() 来自 标头.
Note that building with NOMINMAX disables use of the macro in your entire program. If you need to use the min or max operations, use std::min() or std::max() from the <algorithm> header.
这篇关于警告 C4003 以及错误 C2589 和 C2059 在:x = std::numeric_limits<int>::max();的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:警告 C4003 以及错误 C2589 和 C2059 在:x = std::numeric_limits<int>::max();
基础教程推荐
- CString 到 char* 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
