Java Scanner hasNextLong() 方法



描述

java Scanner hasNextLong() 方法如果此扫描程序的输入中的下一个标记可以使用 nextLong() 方法以默认基数解释为 long 值,则返回 true。扫描程序不会越过任何输入。

声明

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

public boolean hasNextLong()

参数

返回值

此方法当且仅当此扫描程序的下一个标记是有效的 long 值时返回 true

异常

IllegalStateException - 如果此扫描程序已关闭

Java Scanner hasNextLong(int radix) 方法

描述

java.util.Scanner.hasNextLong(int radix) 方法如果此扫描程序的输入中的下一个标记可以使用 nextLong() 方法以指定的基数解释为 long 值,则返回 true。扫描程序不会越过任何输入。

声明

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

public boolean hasNextLong(int radix)

参数

radix - 用于将标记解释为 long 值的基数

返回值

此方法当且仅当此扫描程序的下一个标记是有效的 long 值时返回 true

异常

IllegalStateException - 如果此扫描程序已关闭

使用 Scanner 在字符串上检查下一个标记是否为 Long 的示例

以下示例演示了 Java Scanner hasNextLong() 方法的使用,以检查下一个标记是否为 Long,并使用默认基数。我们使用给定的字符串创建了一个扫描程序对象。然后我们检查每个标记是否为 Long 并打印出来。最后,使用 close() 方法关闭扫描程序。

package com.tutorialspoint;

import java.util.Scanner;

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 a long
         System.out.println("" + scanner.hasNextLong());

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

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

输出

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

false
Hello
false
World!
true
3
false
+
false
3.0
false
=
true
6
true
19864876349786

使用 Scanner 在字符串上使用基数检查下一个标记是否为 Long 的示例

以下示例演示了 Java Scanner hasNextLong(int radix) 方法的使用,以检查下一个标记是否为 Long,并使用给定的基数。我们使用给定的字符串创建了一个扫描程序对象。然后我们检查每个标记是否为 Long 并打印出来。最后,使用 close() 方法关闭扫描程序。

package com.tutorialspoint;

import java.util.Scanner;

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 a long using given radix
         System.out.println("" + scanner.hasNextLong(4));

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

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

输出

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

false
Hello
false
World!
true
3
false
+
false
3.0
false
=
true
6
true
19864876349786

使用 Scanner 在用户输入上检查下一个标记是否为 Long 的示例

以下示例演示了 Java Scanner hasNextLong() 方法的使用,以检查下一个标记是否为 Int。我们使用 System.in 类创建了一个扫描程序对象。然后我们检查每个标记是否为 long 并打印出来。最后,使用 close() 方法关闭扫描程序。

package com.tutorialspoint;

import java.util.Scanner;

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

      // create a new scanner with System Input
      Scanner scanner = new Scanner(System.in);
         
      // check if the scanner's next token is a long
      if(scanner.hasNextLong()){
         // print what is scanned
         System.out.println(scanner.next());		 
      } else {
         scanner.next();
      }

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

输出

让我们编译并运行上述程序,这将产生以下结果 - (其中我们输入了 3.0。)

19864876349786
19864876349786
java_util_scanner.htm
广告