打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
std::max 错误

Today I typed the following:

int t = (std::max)(timeout, lagtime);


Why did I put parentheses around std::max? Because windows.h defines (among other things) a max and a min macro. If you include windows.h the above code will not compile. For example the following:

#include "windows.h"#include <algorithm>void foo() {    int i = 5;    int j = 7;    int x = std::max(i,j);}


Will produce the following error with Visual Studio C++ 2005:

1>test.cpp(7) : error C2589: '(' : illegal token on right side of '::'1>test.cpp(7) : error C2143: syntax error : missing ';' before '::'


There are a number of ways to work around windows.h defining these two macros.


  • Use alternative names defined in windows.h.

    int x = _cpp_max(i,j);int y = _cpp_min(i,j);

    This is not portable; only works on Windows.

  • Define NOMINMAX before including windows.h. This might break existing code that assumes NOMINMAX is not defined.

  • Don't use std::min and std::max. Instead use the tertiary operator like so:

    int x = i > j ? i : j; // max(i,j)int y = i < j ? i : j; // min(i,j)

    This is portable but not as readable and more error prone.

  • Use using statements to make the code portable:

    using std::min;using std::max;int x = max(i,j);int y = min(i,j);

    This works but requires two more lines of code. You could also just use 'using namespace std;' but that might pull in more than you want.

  • Use std::min<int> and std::max<int>

    int x = std::max<int>(i,j);int y = std::min<int>(i,j);

    This requires you to specify the type. However in some cases this actually helps. For example:

    int i = 5;unsigned int j = 7;int x = (std::max)(i,j);int y = (std::min)(i,j);

    Note the 'unsigned'. Generates the following errors:

    1>test.cpp(7) : error C2780: 'const _Ty &std::max(const _Ty &,const _Ty &,_Pr)' : expects 3 arguments - 2 provided1>        c:\program files\microsoft visual studio 8\vc\include\xutility(3190) :see declaration of 'std::max'1>test.cpp(7) : error C2782: 'const _Ty &std::max(const _Ty &,const _Ty &)' :template parameter '_Ty' is ambiguous1>        c:\program files\microsoft visual studio 8\vc\include\xutility(3182) :see declaration of 'std::max'1>        could be 'unsigned int'1>        or 'int'

    By explicitly specifying type via <int> you remove the ambiguity.

  • Use (std::min) and (std::max)

    int i = 5;int j = 7;int x = (std::max)(i,j);int y = (std::min)(i,j);

    This works (as does the std::max<int>) because the C++ preprocessor requires '(' as the next preprocessing token following the macro name to preform the macro expansion.


本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
从零开始学贪心算法
一个跨平台的 C 内存泄漏检测器
为什么std::valarray那么慢(2)
C++ auto 关键字的使用
类内部存储的东西:太简洁了----小话c++(5)
趣味数学和C
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服