Java.util.Scanner.toString()


描述

所述java.util.Scanner.toString()方法返回此扫描器的字符串表示。扫描程序的字符串表示形式包含可能对调试有用的信息。具体格式未指定。

声明

以下是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]