Java.util.Scanner.toString() 方法

描述

java.util.Scanner.toString() 方法返回此 Scanner 的字符串表示形式。 Scanner 的字符串表示形式包含可能对调试有用的信息。 确切的格式未指定。


声明

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

public String toString()

参数

NA


返回值

此方法返回此扫描仪的字符串表示形式


异常

NA


示例

下面的例子展示了 java.util.Scanner.toString() 方法的使用。

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());

      // display information about this scanner
      System.out.println(""+scanner.toString());

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

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

Hello World! 3 + 3.0 = 6.0 true 
java.util.Scanner[delimiters = \p{javaWhitespace}+][position = 32][match valid = true][need input = false][source closed = true][skipped = false][group separator = \.][decimal separator = \,][positive prefix = ][negative prefix = \Q-\E][positive suffix = ][negative suffix = ][NaN string = \Q?\E][infinity string = \Q?\E]