Java.util.Scanner.hasNextLong() 方法


Java.util.Scanner.hasNextLong() 方法

package com.codingdict;

import java.util.*;

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

      String s = "Hello World! 3 + 3.0 = 6 ";
      Long l = 19864876349786l;
      s = s + l;

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

      // use US locale in order to be able to identify long in a string
      scanner.useLocale(Locale.US);

      while (scanner.hasNext()) {

         // check if the scanner's next token is along
         System.out.println("" + scanner.hasNextLong());

         // print what is scanned
         System.out.println("" + scanner.next());
      }

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