<small id='Csh92'></small><noframes id='Csh92'>

      <bdo id='Csh92'></bdo><ul id='Csh92'></ul>

    <tfoot id='Csh92'></tfoot>
  1. <i id='Csh92'><tr id='Csh92'><dt id='Csh92'><q id='Csh92'><span id='Csh92'><b id='Csh92'><form id='Csh92'><ins id='Csh92'></ins><ul id='Csh92'></ul><sub id='Csh92'></sub></form><legend id='Csh92'></legend><bdo id='Csh92'><pre id='Csh92'><center id='Csh92'></center></pre></bdo></b><th id='Csh92'></th></span></q></dt></tr></i><div id='Csh92'><tfoot id='Csh92'></tfoot><dl id='Csh92'><fieldset id='Csh92'></fieldset></dl></div>
      <legend id='Csh92'><style id='Csh92'><dir id='Csh92'><q id='Csh92'></q></dir></style></legend>

      为什么 std::numeric_limits<long long>::max() 失败?

      Why does std::numeric_limitslt;long longgt;::max() fail?(为什么 std::numeric_limitslong long::max() 失败?)
      <legend id='aodBn'><style id='aodBn'><dir id='aodBn'><q id='aodBn'></q></dir></style></legend>
      • <i id='aodBn'><tr id='aodBn'><dt id='aodBn'><q id='aodBn'><span id='aodBn'><b id='aodBn'><form id='aodBn'><ins id='aodBn'></ins><ul id='aodBn'></ul><sub id='aodBn'></sub></form><legend id='aodBn'></legend><bdo id='aodBn'><pre id='aodBn'><center id='aodBn'></center></pre></bdo></b><th id='aodBn'></th></span></q></dt></tr></i><div id='aodBn'><tfoot id='aodBn'></tfoot><dl id='aodBn'><fieldset id='aodBn'></fieldset></dl></div>
          <tbody id='aodBn'></tbody>
      • <small id='aodBn'></small><noframes id='aodBn'>

          <tfoot id='aodBn'></tfoot>
            • <bdo id='aodBn'></bdo><ul id='aodBn'></ul>

                本文介绍了为什么 std::numeric_limits<long long>::max() 失败?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                这行代码在 VS2015 Update 3 中编译失败:

                This line of code fails to compile in VS2015 Update 3:

                auto a = std::numeric_limits<long long>::max();
                

                找不到max()的定义.这是为什么?

                It cannot find the definition of max(). Why is this?

                推荐答案

                那个 max 调用可能会干扰 "evil" max 预处理器 宏在 Windows SDK 标头中定义,您可能已经(直接或间接)包含了这些标头.

                That max call may interfere with "evil" max preprocessor macro defined in the Windows SDK headers, that you have probably included (directly or indirectly).

                一个选项是使用额外的一对括号来防止预处理器max宏启动:

                An option is to prevent the preprocessor max macro to kick in, using an additional pair of parentheses:

                ... = (std::numeric_limits<long long>::max)();
                

                <小时>

                作为附加选项,您可以考虑 #define #NOMINMAX before 包括 Windows 标头.这将阻止上述 minmax 预处理器宏的定义.


                As an additional option, you may consider #define #NOMINMAX before including Windows headers. This will prevent the definition of the aforementioned min and max preprocessor macros.

                但是,请注意某些 Windows 标头(例如 GDI+ 标头)确实需要 Win32 的 minmax 预处理器宏,因此在此类中在这种情况下,使用额外的一对括号可能是更好的选择.

                However, note that some Windows headers (like the GDI+ ones) do require the Win32's min and max preprocessor macros, so in such cases the use of an additional pair of parentheses may be a better option.

                这篇关于为什么 std::numeric_limits<long long>::max() 失败?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Constructor initialization Vs assignment(构造函数初始化 Vs 赋值)
                Is a `=default` move constructor equivalent to a member-wise move constructor?(`=default` 移动构造函数是否等同于成员移动构造函数?)
                Has the new C++11 member initialization feature at declaration made initialization lists obsolete?(声明时新的 C++11 成员初始化功能是否使初始化列表过时了?)
                Order of constructor call in virtual inheritance(虚继承中构造函数调用的顺序)
                How to use sfinae for selecting constructors?(如何使用 sfinae 选择构造函数?)
                Initializing a union with a non-trivial constructor(使用非平凡的构造函数初始化联合)

                  <small id='VSkbf'></small><noframes id='VSkbf'>

                  <tfoot id='VSkbf'></tfoot>

                  <legend id='VSkbf'><style id='VSkbf'><dir id='VSkbf'><q id='VSkbf'></q></dir></style></legend>
                      <tbody id='VSkbf'></tbody>
                        <bdo id='VSkbf'></bdo><ul id='VSkbf'></ul>
                        <i id='VSkbf'><tr id='VSkbf'><dt id='VSkbf'><q id='VSkbf'><span id='VSkbf'><b id='VSkbf'><form id='VSkbf'><ins id='VSkbf'></ins><ul id='VSkbf'></ul><sub id='VSkbf'></sub></form><legend id='VSkbf'></legend><bdo id='VSkbf'><pre id='VSkbf'><center id='VSkbf'></center></pre></bdo></b><th id='VSkbf'></th></span></q></dt></tr></i><div id='VSkbf'><tfoot id='VSkbf'></tfoot><dl id='VSkbf'><fieldset id='VSkbf'></fieldset></dl></div>