位置:首頁 > Java技術 > Java.util包 > java.util.Scanner.reset()方法實例

java.util.Scanner.reset()方法實例

java.util.Scanner.reset() 方法重置該掃描儀。重設scanner 丟棄所有的這些可能已被useDelimiter(java.util.regex.Pattern)的調用改變其明確的狀態信息,useLocale(java.util.Locale),或useRadix(int)。

聲明

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

public Scanner reset()

參數

  • NA

返回值

此方法返回此scanner

異常

  • NA

例子

下麵的示例演示java.util.Scanner.reset()方法的用法。

package com.yiibai;

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