C# 中 Read()、ReadKey() 和 ReadLine() 方法之间有什么区别?


Read()

Read() 从标准输入流中读取下一个字符。如果在控制台上按了某个键,就会关闭。

int az = Console.Read()
Console.WriteLine(z);

ReadKey()

仅从标准输入流中读取单个字符。

ReadLine()

从标准输入流中读取下一行字符。

示例

 实时演示

using System;
class Program {
   static void Main() {

      int x = 10;
      Console.WriteLine(x);
      Console.Write("
Press any key to continue... ");       Console.ReadLine();    } }

输出

10

Press any key to continue...

更新于: 2020-06-22

1 千 + 浏览量

启动您的 职业

完成课程,获得认证

开始
广告