Syntax error with std::numeric_limits::max(std::numeric_limits::max 的语法错误)
问题描述
我的类结构定义如下:
#include <limits>
struct heapStatsFilters
{
heapStatsFilters(size_t minValue_ = 0, size_t maxValue_ = std::numeric_limits<size_t>::max())
{
minMax[0] = minValue_; minMax[1] = maxValue_;
}
size_t minMax[2];
};
问题是我不能使用 'std::numeric_limits::max()' 并且编译器说:
The problem is that I cannot use 'std::numeric_limits::max()' and the compiler says:
错误 8 错误 C2059:语法错误:'::'
Error 7 error C2589: '(' : '::'右侧的非法标记
我使用的编译器是 Visual C++ 11 (2012)
The compiler which I am using is Visual C++ 11 (2012)
推荐答案
您的问题是由
头文件引起的,该头文件包含名为 max
和 min
:
Your problem is caused by the <Windows.h>
header file that includes macro definitions named max
and min
:
#define max(a,b) (((a) > (b)) ? (a) : (b))
看到这个定义,预处理器替换了表达式中的max
标识符:
Seeing this definition, the preprocessor replaces the max
identifier in the expression:
std::numeric_limits<size_t>::max()
通过宏定义,最终导致语法无效:
by the macro definition, eventually leading to invalid syntax:
std::numeric_limits<size_t>::(((a) > (b)) ? (a) : (b))
编译器报错:'(' : '::' 右侧的非法标记
.
作为一种解决方法,您可以将 NOMINMAX
定义添加到编译器标志(或在包含标头之前添加到翻译单元):
As a workaround, you can add the NOMINMAX
define to compiler flags (or to the translation unit, before including the header):
#define NOMINMAX
或用括号将max
的调用包裹起来,以防止宏扩展:
or wrap the call to max
with parenthesis, which prevents the macro expansion:
size_t maxValue_ = (std::numeric_limits<size_t>::max)()
// ^ ^
或 #undef max
在调用 numeric_limits
之前:
or #undef max
before calling numeric_limits<size_t>::max()
:
#undef max
...
size_t maxValue_ = std::numeric_limits<size_t>::max()
这篇关于std::numeric_limits::max 的语法错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:std::numeric_limits::max 的语法错误
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01