std::max 错误

时间:2014-05-01 05:26:13   收藏:0   阅读:383

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.

std::max 错误,码迷,mamicode.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!