java.util.Scanner.toString()方法實例
java.util.Scanner.toString() 方法返回此Scanner的字符串表示形式。Scanner的字符串表示形式包含可能對調試有用的信息。確切的格式是不確定的。
聲明
以下是java.util.Scanner.toString()方法的聲明
public String toString()
參數
-
NA
返回值
此方法返回此scanner的字符串表示形式
異常
-
NA
例子
下麵的示例演示java.util.Scanner.toString()方法的用法。
package com.yiibai; 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]