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

    <tfoot id='Cjaql'></tfoot>

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

        如何在 Java 中将 char 转换为 int?

        时间:2023-07-28

            <tbody id='UTwZo'></tbody>

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

              1. <legend id='UTwZo'><style id='UTwZo'><dir id='UTwZo'><q id='UTwZo'></q></dir></style></legend>
                  <bdo id='UTwZo'></bdo><ul id='UTwZo'></ul>
                  本文介绍了如何在 Java 中将 char 转换为 int?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  (我是 Java 编程新手)

                  (I'm new at Java programming)

                  例如:

                  char x = '9';
                  

                  我需要得到撇号中的数字,即数字 9 本身.我尝试执行以下操作,

                  and I need to get the number in the apostrophes, the digit 9 itself. I tried to do the following,

                  char x = 9;
                  int y = (int)(x);
                  

                  但是没有用.

                  那么我应该怎么做才能得到撇号中的数字呢?

                  So what should I do to get the digit in the apostrophes?

                  推荐答案

                  排列ASCII表,使得字符'9'的值比'的值大90';字符'8'的值比'0'的值大8;等等.

                  The ASCII table is arranged so that the value of the character '9' is nine greater than the value of '0'; the value of the character '8' is eight greater than the value of '0'; and so on.

                  所以你可以通过减去'0'得到一个十进制数字char的int值.

                  So you can get the int value of a decimal digit char by subtracting '0'.

                  char x = '9';
                  int y = x - '0'; // gives the int value 9
                  

                  这篇关于如何在 Java 中将 char 转换为 int?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何检查字符是否为元音? 下一篇:如果 char 数组是 Java 中的 Object,为什么打印它不

                  相关文章

                  最新文章

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

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

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