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

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

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

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

        获取字符的扫描仪方法

        时间:2023-07-28
        <tfoot id='zQJLf'></tfoot>

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

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

                • 本文介绍了获取字符的扫描仪方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  什么是Scanner 方法来获取Java 中键盘返回的char.

                  What is the Scanner method to get a char returned by the keyboard in Java.

                  比如 nextLine() 代表 StringnextInt() 代表 int 等等

                  like nextLine() for String, nextInt() for int, etc.

                  推荐答案

                  要从 Scanner 获取 char,可以使用 findInLine 方法.

                  To get a char from a Scanner, you can use the findInLine method.

                      Scanner sc = new Scanner("abc");
                      char ch = sc.findInLine(".").charAt(0);
                      System.out.println(ch); // prints "a"
                      System.out.println(sc.next()); // prints "bc"
                  

                  如果您需要来自 Scanner 的一堆 char,那么(可能暂时)将分隔符更改为空字符串可能会更方便.这将使 next() 每次返回一个长度为 1 的字符串.

                  If you need a bunch of char from a Scanner, then it may be more convenient to (perhaps temporarily) change the delimiter to the empty string. This will make next() returns a length-1 string every time.

                      Scanner sc = new Scanner("abc");
                      sc.useDelimiter("");
                      while (sc.hasNext()) {
                          System.out.println(sc.next());
                      } // prints "a", "b", "c"
                  

                  这篇关于获取字符的扫描仪方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Java中字符的大小不是2字节吗? 下一篇:“char"和“char"之间的区别和“字符串&q

                  相关文章

                  最新文章

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

                      • <bdo id='4zEg7'></bdo><ul id='4zEg7'></ul>

                      <small id='4zEg7'></small><noframes id='4zEg7'>

                    2. <tfoot id='4zEg7'></tfoot>