C#中的Console.Read()方法详解
程序员文章站
2022-04-16 10:13:10
...
Console.Read()方法用于从标准输入流中读取下一个字符。当用户键入一些输入字符时,此方法基本上阻止其返回。一旦用户按ENTER键,它就会终止。
语法:
public static int Read();
返回值:返回输入流中的下一个字符,如果当前没有要读取的字符,则返回负数(-1)。
例外:如果发生I / O错误,此方法将给出IOException。
以下程序说明了上述方法的使用:
示例1:
// C# program to illustrate the use // of Console.Read Method using System; namespace GFG { class Program { static void Main(string[] args) { int x; Console.WriteLine("Enter your Character to get Decimal number"); // using the method x = Console.Read(); Console.WriteLine(x); } } }
输出:
示例2:
// C# program to illustrate the use // of Console.Read Method using System; namespace GFG { class Program { static void Main(string[] args) { // Write to console window. int x; Console.WriteLine("Enter your Character to get Decimal number"); x = Console.Read(); Console.WriteLine(x); // Converting the decimal into character. Console.WriteLine(Convert.ToChar(x)); } } }
输出:
相关推荐:《C教程》
本篇文章就是关于C#中的Console.Read()方法详解,希望对需要的朋友有所帮助!
以上就是C#中的Console.Read()方法详解的详细内容,更多请关注其它相关文章!
推荐阅读
-
Symfony2实现在controller中获取url的方法_php实例
-
Yii中CGridView关联表搜索排序方法实例详解,yiicgridview_PHP教程
-
Bootstrap模态对话框中显示动态内容的方法
-
PHP array_key_exists检查键名或索引是否存在于数组中的实现方法_php实例
-
watch在Vue.js中的使用方法详解
-
PHP中实现生成静态文件的方法缓解服务器压力_PHP
-
SQL中Exists的用法实例详解
-
mysql中sum float类型使用小数点的方法_MySQL
-
php中判断数组是一维,二维,还是多维的解决方法_php实例
-
探讨fckeditor在Php中的配置详解_php技巧