Java.util.Scanner.reset()


描述

所述java.util.Scanner.reset()方法重置该scanner.Resetting扫描器丢弃所有的可能已经通过useDelimiter(java.util.regex.Pattern中),useLocale(java.util中的调用改变其明确的状态信息。 Locale)或useRadix(int)。

声明

以下是java.util.Scanner.reset()方法的声明

public Scanner reset()

参数

NA

返回值

此方法返回此扫描仪

异常

NA

实例

以下示例显示了java.util.Scanner.reset()方法的用法。

package com.tutorialspoint;

import java.util.*;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6.0 true ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print a line of the scanner
      System.out.println("" + scanner.nextLine());

      // change the locale of this scanner
      scanner.useLocale(Locale.US);

      // change the radix of this scanner
      scanner.useRadix(30);

      // reset and check the values for radix and locale, which are the default
      scanner.reset();
      System.out.println("" + scanner.radix());
      System.out.println("" + scanner.locale());

      // close the scanner
      scanner.close();
   }
}

让我们编译并运行上面的程序,这将产生以下结果

Hello World! 3 + 3.0 = 6.0 true
10
el_GR