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


Read()

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

int a = Console.Read()
Console.WriteLine(a);

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 年 6 月 22 日

627 次浏览

开启您的职业生涯生涯

通过完成课程获得认证

开始吧
广告