Java.util.Scanner.remove() Java.util.Scanner.radix() Java.util.Scanner.reset() 描述 该java.util.Scanner.remove()方法不受此实现迭代器的支持。 声明 以下是java.util.Scanner.remove()方法的声明 public void remove() 参数 NA 返回值 此方法不返回值。 异常 UnsupportedOperationException - 如果调用此方法。 实例 以下示例显示了java.util.Scanner.remove()方法的用法。 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()); // attempt to call remove results in an exception scanner.remove(); // close the scanner scanner.close(); } } 让我们编译并运行上面的程序,这将产生以下结果 Hello World! 3 + 3.0 = 6.0 true Exception in thread "main" java.lang.UnsupportedOperationException Java.util.Scanner.radix() Java.util.Scanner.reset()