<tfoot id='G9mO3'></tfoot>

    1. <legend id='G9mO3'><style id='G9mO3'><dir id='G9mO3'><q id='G9mO3'></q></dir></style></legend>

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

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

    2. <small id='G9mO3'></small><noframes id='G9mO3'>

      如何检查值是否为整数类型?

      时间:2023-09-30

    3. <tfoot id='kc9RA'></tfoot>

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

    4. <legend id='kc9RA'><style id='kc9RA'><dir id='kc9RA'><q id='kc9RA'></q></dir></style></legend>
        <bdo id='kc9RA'></bdo><ul id='kc9RA'></ul>
          <tbody id='kc9RA'></tbody>

              <i id='kc9RA'><tr id='kc9RA'><dt id='kc9RA'><q id='kc9RA'><span id='kc9RA'><b id='kc9RA'><form id='kc9RA'><ins id='kc9RA'></ins><ul id='kc9RA'></ul><sub id='kc9RA'></sub></form><legend id='kc9RA'></legend><bdo id='kc9RA'><pre id='kc9RA'><center id='kc9RA'></center></pre></bdo></b><th id='kc9RA'></th></span></q></dt></tr></i><div id='kc9RA'><tfoot id='kc9RA'></tfoot><dl id='kc9RA'><fieldset id='kc9RA'></fieldset></dl></div>
              • 本文介绍了如何检查值是否为整数类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我需要检查一个值是否为整数.我发现了这个:如何检查输入值是否为整数还是浮点数?,但如果我没记错的话,即使 value 本身,变量仍然是 double 类型确实是一个整数.

                I need to check if a value is an integer. I found this: How to check whether input value is integer or float?, but if I'm not mistaken, the variable there is still of type double even though the value itself is indeed an integer.

                推荐答案

                如果输入值可以是整数以外的数字形式,请检查

                If input value can be in numeric form other than integer , check by

                if (x == (int)x)
                {
                   // Number is integer
                }
                

                如果正在传递字符串值,请使用 Integer.parseInt(string_var).请确保在转换失败时使用 try catch 进行错误处理.

                If string value is being passed , use Integer.parseInt(string_var). Please ensure error handling using try catch in case conversion fails.

                这篇关于如何检查值是否为整数类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:int 数组初始化 下一篇:画一个圆的半径和点周围的边缘

                相关文章

                最新文章

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

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

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