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# Uri.GetHashCode()用法及代碼示例
- C# SortedDictionary.Add()用法及代碼示例
- C# TimeSpan.Add()用法及代碼示例
- C# Uri.IsWellFormedOriginalString()用法及代碼示例
- C# DateTime.Add()用法及代碼示例
- C# Uri.IsBaseOf(Uri)用法及代碼示例
- C# Uri.IsHexDigit()用法及代碼示例
- C# Random.Next()用法及代碼示例
- C# Uri.ToString()用法及代碼示例
- C# Uri.FromHex()用法及代碼示例
注:本文由純淨天空篩選整理自Sabya_Samadder大神的英文原創作品 Console.Read() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。