Java.util.Scanner.nextLong(int radix) 方法 Java.util.Scanner.nextLong() 方法 Java.util.Scanner.nextShort() 方法 Java.util.Scanner.nextLong(int radix) 方法 package com.codingdict; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6.0 true "; Long l = 13964599874l; s = s + l; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // find the next long token and print it // loop for the whole scanner while (scanner.hasNext()) { // if no long is found, print "Not Found:" and the token System.out.println("Not Found :" + scanner.next()); // if the next is a long, print found and the long with radix 20 if (scanner.hasNextLong()) { System.out.println("Found :" + scanner.nextLong(20)); } } // close the scanner scanner.close(); } } Java.util.Scanner.nextLong() 方法 Java.util.Scanner.nextShort() 方法