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

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

      1. <tfoot id='Fmy8f'></tfoot>

        <legend id='Fmy8f'><style id='Fmy8f'><dir id='Fmy8f'><q id='Fmy8f'></q></dir></style></legend>

        如何检查 C++ 字符串是否为 int?

        How do I check if a C++ string is an int?(如何检查 C++ 字符串是否为 int?)

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

        1. <tfoot id='HZrBx'></tfoot>

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

              <bdo id='HZrBx'></bdo><ul id='HZrBx'></ul>
                1. <legend id='HZrBx'><style id='HZrBx'><dir id='HZrBx'><q id='HZrBx'></q></dir></style></legend>

                    <tbody id='HZrBx'></tbody>
                2. 本文介绍了如何检查 C++ 字符串是否为 int?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当我使用 getline 时,我会输入一堆字符串或数字,但我只希望 while 循环输出不是数字的单词".那么有没有办法检查单词"是否是数字?我知道我可以使用 atoi()C-strings 但是对于 string 类的字符串呢?

                  When I use getline, I would input a bunch of strings or numbers, but I only want the while loop to output the "word" if it is not a number. So is there any way to check if "word" is a number or not? I know I could use atoi() for C-strings but how about for strings of the string class?

                  int main () {
                    stringstream ss (stringstream::in | stringstream::out);
                    string word;
                    string str;
                    getline(cin,str);
                    ss<<str;
                    while(ss>>word)
                      {
                        //if(    )
                          cout<<word<<endl;
                      }
                  }
                  

                  推荐答案

                  另一个版本...

                  使用strtol,包裹起来在一个简单的函数中隐藏其复杂性:

                  Use strtol, wrapping it inside a simple function to hide its complexity :

                  inline bool isInteger(const std::string & s)
                  {
                     if(s.empty() || ((!isdigit(s[0])) && (s[0] != '-') && (s[0] != '+'))) return false;
                  
                     char * p;
                     strtol(s.c_str(), &p, 10);
                  
                     return (*p == 0);
                  }
                  

                  为什么是 strtol ?

                  就我喜欢 C++ 而言,有时 C API 是最好的答案:

                  Why strtol ?

                  As far as I love C++, sometimes the C API is the best answer as far as I am concerned:

                  • 对于被授权失败的测试来说,使用异常是过度的
                  • 当 C 标准库有一个鲜为人知的专用函数来完成这项工作时,由词法转换创建的临时流对象是过度杀伤和效率低下的.

                  strtol 乍一看似乎很原始,因此解释将使代码更易于阅读:

                  strtol seems quite raw at first glance, so an explanation will make the code simpler to read :

                  strtol 将解析字符串,在第一个不能被视为整数一部分的字符处停止.如果您提供 p(就像我上面所做的那样),它会将 p 设置在第一个非整数字符处.

                  strtol will parse the string, stopping at the first character that cannot be considered part of an integer. If you provide p (as I did above), it sets p right at this first non-integer character.

                  我的推理是,如果p没有设置为字符串的结尾(0字符),那么字符串s中就有一个非整数字符,这意味着 s 不是一个正确的整数.

                  My reasoning is that if p is not set to the end of the string (the 0 character), then there is a non-integer character in the string s, meaning s is not a correct integer.

                  第一个测试是为了消除极端情况(前导空格、空字符串等).

                  The first tests are there to eliminate corner cases (leading spaces, empty string, etc.).

                  当然,这个函数应该根据您的需要进行定制(前导空格是否有错误?等).

                  This function should be, of course, customized to your needs (are leading spaces an error? etc.).

                  查看 strtol 的描述:http://en.cppreference.com/w/cpp/string/byte/strtol.

                  另请参阅strtol 的姐妹函数(strtodstrtoul 等)的说明.

                  See, too, the description of strtol's sister functions (strtod, strtoul, etc.).

                  这篇关于如何检查 C++ 字符串是否为 int?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                  How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)
                  Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                  Delay Loading DLLs(延迟加载 DLL)
                  Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                  Loading a dll from a dll?(从 dll 加载 dll?)

                    • <small id='bzHrz'></small><noframes id='bzHrz'>

                    • <tfoot id='bzHrz'></tfoot>

                        <tbody id='bzHrz'></tbody>

                          <legend id='bzHrz'><style id='bzHrz'><dir id='bzHrz'><q id='bzHrz'></q></dir></style></legend>

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