当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Console.Read()用法及代码示例


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)); 
    } 
} 
}

输出:

参考:



相关用法


注:本文由纯净天空筛选整理自Sabya_Samadder大神的英文原创作品 Console.Read() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。