博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
console java_Java Console reader()方法与示例
阅读量:2537 次
发布时间:2019-05-11

本文共 1524 字,大约阅读时间需要 5 分钟。

console java

控制台类reader()方法 (Console Class reader() method)

  • reader() method is available in java.io package.

    reader()方法在java.io包中可用。

  • reader() method is used to return distinct reader objects linked with this console.

    reader()方法用于返回与此控制台链接的不同阅读器对象。

  • reader() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    reader()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • reader() method does not throw an exception at the time of returning associated reader.

    返回关联的阅读器时, reader()方法不会引发异常。

Syntax:

句法:

public Reader reader();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is Reader, it returns this class Reader.

方法的返回类型为Reader ,它返回此类Reader。

Example:

例:

// Java program to demonstrate the example // of Reader reader() method of Consoleimport java.io.*;import java.util.*;public class ReaderOfConsole {
public static void main(String[] args) {
try {
// Instantiates Console , Reader // and Scanner Console con = System.console(); Reader r = con.reader(); System.out.println("Enter Website: "); Scanner sc = new Scanner(r); while (sc.hasNext()) {
// Read next input String s = sc.next(); // Display Read input System.out.println("Website Name Is: " + s); } } catch (Exception ex) {
System.out.println(ex.toString()); } }}

Output

输出量

Enter Website:includehelp.comWebsite Name Is: includehelp.com

翻译自:

console java

转载地址:http://twozd.baihongyu.com/

你可能感兴趣的文章
在CentOS构造内核树----通过yum方式(智能化方式)
查看>>
zabbix如何监控WEB应用性能
查看>>
软件工程——理论、方法与实践 第九章
查看>>
mac环境下mongodb的安装和使用
查看>>
实验9 根据材料编程
查看>>
网站架构
查看>>
Request.QueryString 和 Request.Param的区别
查看>>
CSS技巧(一):清除浮动
查看>>
狄利克雷分布
查看>>
atitit. 研发管理---如何根据自己的特挑选 产业、行业、职业、岗位与自己发展的关系...
查看>>
Atitit. WordPress 4.2.2新特性对比 attilax总结
查看>>
Atitit.常用分区api的attilax总结
查看>>
atitit。ocr框架类库大全 attilax总结
查看>>
EventDispatcher 事件分发组件
查看>>
JavaScript表格隔行换色悬停高亮
查看>>
博客园,我又回来了
查看>>
adt-bundle-eclipse下的修改android项目名
查看>>
Unity-UGUI相关
查看>>
EV: 关闭屏幕显示的联想笔记本NumLock键打开标志
查看>>
彭明辉老师研究生指导手册笔记
查看>>