Java Scanner close()方法
java.util.Scanner.close() 方法关闭此scanner。如果此scanner尚未关闭,并且其潜在的可读性也实现Closeable接口,然后是可读的close方法将被调用。如果此scanner已关闭,则调用这个方法不会有任何效果。
1 语法
public void close()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.close() 方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello World! 3 + 3.0 = 6";
// create a new scanner with the specified String Object
Scanner scanner = new Scanner(s);
// print the next line of the string
System.out.println("" + scanner.nextLine());
// close the scanner
System.out.println("Closing Scanner...");
scanner.close();
System.out.println("Scanner Closed.");
}
}
输出结果为:
Hello World! 3 + 3.0 = 6
Closing Scanner...
Scanner Closed.
热门文章
优秀文章