• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            posts - 311, comments - 0, trackbacks - 0, articles - 0
              C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

            (搬運工)std::min and std::max

            Posted on 2012-01-06 16:40 點點滴滴 閱讀(1514) 評論(0)  編輯 收藏 引用 所屬分類: 02 編程語言
            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 provided
              1> 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 ambiguous
              1> 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.
            www久久久天天com| 欧美大战日韩91综合一区婷婷久久青草| 久久久av波多野一区二区| 久久精品中文字幕有码| 免费无码国产欧美久久18| 成人国内精品久久久久一区| 久久精品国产欧美日韩| 久久SE精品一区二区| 精品国产一区二区三区久久蜜臀| 久久人与动人物a级毛片| 亚洲伊人久久精品影院| 精品久久一区二区三区| 大香伊人久久精品一区二区 | 日日狠狠久久偷偷色综合0| 日韩电影久久久被窝网| 久久国产乱子伦精品免费强| 亚洲国产精品狼友中文久久久| 人妻无码αv中文字幕久久琪琪布 人妻无码久久一区二区三区免费 人妻无码中文久久久久专区 | 伊人久久大香线蕉影院95| 无码人妻少妇久久中文字幕| 亚洲va中文字幕无码久久不卡| 精品99久久aaa一级毛片| 亚洲午夜久久久久妓女影院| 99久久精品免费看国产一区二区三区 | 久久亚洲中文字幕精品有坂深雪| 99久久99久久精品国产片果冻| 国产成人无码精品久久久性色 | 午夜肉伦伦影院久久精品免费看国产一区二区三区 | 国产精品久久久久久一区二区三区| 久久精品国产亚洲5555| 精品久久久久久无码专区不卡| 中文精品久久久久人妻不卡| 久久青青草原国产精品免费| 精品久久人妻av中文字幕| 久久人人爽人人爽人人AV东京热| 777米奇久久最新地址| 亚洲av日韩精品久久久久久a| 99久久无色码中文字幕人妻| 伊人久久一区二区三区无码| 久久强奷乱码老熟女网站| 日韩亚洲国产综合久久久|