Java Scanner reset() 方法
示例
重置对扫描器配置所做的更改
// Create a scanner object
Scanner myObj = new Scanner("A string to scan");
// Change configuration
myObj.useDelimiter(",");
myObj.useLocale(new Locale("es"));
myObj.useRadix(16);
// Reset the configuration
myObj.reset();
// Read configuration values
System.out.println(myObj.delimiter());
System.out.println(myObj.locale());
System.out.println(myObj.radix());
定义和用法
The reset()
方法重置对扫描器配置所做的所有更改。 扫描器的配置可以通过 useDelimiter()
、useLocale()
和 useRadix()
方法更改。
语法
public Scanner reset()
技术细节
返回 | 对该方法所属的 Scanner 对象的引用,允许链接配置方法。 链接的一个示例是 myObj.reset().useDelimiter(","); 。 |
---|---|
Java 版本 | 1.6+ |