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

      <tfoot id='l2wNM'></tfoot>

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

      • <bdo id='l2wNM'></bdo><ul id='l2wNM'></ul>
    2. 在javascript中使用按位或转换为整数

      时间:2023-09-07
    3. <small id='FahiC'></small><noframes id='FahiC'>

          <tbody id='FahiC'></tbody>
            <bdo id='FahiC'></bdo><ul id='FahiC'></ul>
            <legend id='FahiC'><style id='FahiC'><dir id='FahiC'><q id='FahiC'></q></dir></style></legend>

              <i id='FahiC'><tr id='FahiC'><dt id='FahiC'><q id='FahiC'><span id='FahiC'><b id='FahiC'><form id='FahiC'><ins id='FahiC'></ins><ul id='FahiC'></ul><sub id='FahiC'></sub></form><legend id='FahiC'></legend><bdo id='FahiC'><pre id='FahiC'><center id='FahiC'></center></pre></bdo></b><th id='FahiC'></th></span></q></dt></tr></i><div id='FahiC'><tfoot id='FahiC'></tfoot><dl id='FahiC'><fieldset id='FahiC'></fieldset></dl></div>
              <tfoot id='FahiC'></tfoot>
              • 本文介绍了在javascript中使用按位或转换为整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我们可以做以下转换:

                var a = "129.13"|0,  // becomes 129
                
                var b = 11.12|0; // becomes 11
                
                var c = "112"|0; // becomes 112
                

                这似乎可行,但不确定这是否是标准的 JS 功能.有谁知道这是否可以安全地用于将字符串和小数转换为整数?

                This seem to work but not sure if this is a standard JS feature. Does any one have any idea if this is safe to use for converting strings and decimals to integers ?

                推荐答案

                是的,这是标准行为.位运算符仅对整数进行运算,因此它们将给出的任何数字转换为有符号的 32 位整数.

                Yes, it is standard behavior. Bitwise operators only operate on integers, so they convert whatever number they're give to signed 32 bit integer.

                这意味着最大范围是有符号的32位整数减1,即2147483647.

                This means that the max range is that of signed 32 bit integer minus 1, which is 2147483647.

                (Math.pow(2, 32) / 2 - 1)|0; // 2147483647
                
                (Math.pow(2, 32) / 2)|0; // -2147483648 (wrong result)
                

                这篇关于在javascript中使用按位或转换为整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:Javascript 是否处理整数上溢和下溢?如果是,如何 下一篇:如何使用 JavaScript 限制最小值/最大值之间的数字

                相关文章

                最新文章

              • <legend id='kcxKt'><style id='kcxKt'><dir id='kcxKt'><q id='kcxKt'></q></dir></style></legend>

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