Console.ReadLine Yöntem

Tanım

Standart giriş akışından sonraki karakter satırını okur.Reads the next line of characters from the standard input stream.

public:
 static System::String ^ ReadLine();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static string? ReadLine ();
public static string ReadLine ();
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member ReadLine : unit -> string
static member ReadLine : unit -> string
Public Shared Function ReadLine () As String

Döndürülenler

String

Giriş akışındaki sonraki karakter satırı veya null kullanılabilir daha fazla satır yok.The next line of characters from the input stream, or null if no more lines are available.

Öznitelikler

Özel durumlar

G/ç hatası oluştu.An I/O error occurred.

Döndürülen dize için arabellek ayırmaya yetecek bellek yok.There is insufficient memory to allocate a buffer for the returned string.

Sonraki karakter satırındaki karakterlerin sayısı büyüktür MaxValue .The number of characters in the next line of characters is greater than MaxValue.

Örnekler

Aşağıdaki örnek iki komut satırı bağımsız değişkeni gerektirir: var olan bir metin dosyasının adı ve çıktının yazılacağı dosyanın adı.The following example requires two command line arguments: the name of an existing text file, and the name of a file to write the output to. Varolan metin dosyasını açar ve standart girişi klavyeden bu dosyaya yönlendirir.It opens the existing text file and redirects the standard input from the keyboard to that file. Ayrıca, Standart çıktıyı konsolundan çıkış dosyasına yönlendirir.It also redirects the standard output from the console to the output file. Ardından, Console.ReadLine dosyadaki her satırı okumak için yöntemini kullanır, her dört boşluk dizisini bir sekme karakteriyle değiştirir ve Console.WriteLine sonucu çıktı dosyasına yazmak için yöntemini kullanır.It then uses the Console.ReadLine method to read each line in the file, replaces every sequence of four spaces with a tab character, and uses the Console.WriteLine method to write the result to the output file.

using namespace System;
using namespace System::IO;

int main()
{
   array<String^>^args = Environment::GetCommandLineArgs();
   const int tabSize = 4;
   String^ usageText = "Usage: INSERTTABS inputfile.txt outputfile.txt";
   StreamWriter^ writer = nullptr;
   if ( args->Length < 3 )
   {
      Console::WriteLine( usageText );
      return 1;
   }

   try
   {
      // Attempt to open output file.
      writer = gcnew StreamWriter( args[ 2 ] );
      // Redirect standard output from the console to the output file.
      Console::SetOut( writer );
      // Redirect standard input from the console to the input file.
      Console::SetIn( gcnew StreamReader( args[ 1 ] ) );
   }
   catch ( IOException^ e ) 
   {
      TextWriter^ errorWriter = Console::Error;
      errorWriter->WriteLine( e->Message );
      errorWriter->WriteLine( usageText );
      return 1;
   }

   String^ line;
   while ( (line = Console::ReadLine()) != nullptr )
   {
      String^ newLine = line->Replace( ((String^)"")->PadRight( tabSize, ' ' ), "\t" );
      Console::WriteLine( newLine );
   }

   writer->Close();
   
   // Recover the standard output stream so that a 
   // completion message can be displayed.
   StreamWriter^ standardOutput = gcnew StreamWriter( Console::OpenStandardOutput() );
   standardOutput->AutoFlush = true;
   Console::SetOut( standardOutput );
   Console::WriteLine( "INSERTTABS has completed the processing of {0}.", args[ 1 ] );
   return 0;
}

using System;
using System.IO;

public class InsertTabs
{
    private const int tabSize = 4;
    private const string usageText = "Usage: INSERTTABS inputfile.txt outputfile.txt";
    public static int Main(string[] args)
    {
        if (args.Length < 2)
        {
            Console.WriteLine(usageText);
            return 1;
        }

        try
        {
            // Attempt to open output file.
            using (var writer = new StreamWriter(args[1]))
            {
                using (var reader = new StreamReader(args[0]))
                {
                    // Redirect standard output from the console to the output file.
                    Console.SetOut(writer);
                    // Redirect standard input from the console to the input file.
                    Console.SetIn(reader);
                    string line;
                    while ((line = Console.ReadLine()) != null)
                    {
                        string newLine = line.Replace(("").PadRight(tabSize, ' '), "\t");
                        Console.WriteLine(newLine);
                    }
                }
            }
        }
        catch(IOException e)
        {
            TextWriter errorWriter = Console.Error;
            errorWriter.WriteLine(e.Message);
            errorWriter.WriteLine(usageText);
            return 1;
        }

        // Recover the standard output stream so that a
        // completion message can be displayed.
        var standardOutput = new StreamWriter(Console.OpenStandardOutput());
        standardOutput.AutoFlush = true;
        Console.SetOut(standardOutput);
        Console.WriteLine($"INSERTTABS has completed the processing of {args[0]}.");
        return 0;
    }
}
Imports System.IO

Public Module InsertTabs
    Private Const tabSize As Integer = 4
    Private Const usageText As String = "Usage: INSERTTABS inputfile.txt outputfile.txt"
   
    Public Function Main(args As String()) As Integer
        If args.Length < 2 Then
            Console.WriteLine(usageText)
            Return 1
        End If
      
        Try
            ' Attempt to open output file.
            Using writer As New StreamWriter(args(1))
                Using reader As New StreamReader(args(0))
                    ' Redirect standard output from the console to the output file.
                    Console.SetOut(writer)
                    ' Redirect standard input from the console to the input file.
                    Console.SetIn(reader)
                    Dim line As String = Console.ReadLine()
                    While line IsNot Nothing
                        Dim newLine As String = line.Replace("".PadRight(tabSize, " "c), ControlChars.Tab)
                        Console.WriteLine(newLine)
                        line = Console.ReadLine()
                    End While
                End Using
            End Using
        Catch e As IOException
            Dim errorWriter As TextWriter = Console.Error
            errorWriter.WriteLine(e.Message)
            errorWriter.WriteLine(usageText)
            Return 1
        End Try

        ' Recover the standard output stream so that a 
        ' completion message can be displayed.
        Dim standardOutput As New StreamWriter(Console.OpenStandardOutput())
        standardOutput.AutoFlush = True
        Console.SetOut(standardOutput)
        Console.WriteLine($"INSERTTABS has completed the processing of {args(0)}.")
        Return 0
    End Function 
End Module

Açıklamalar

ReadLineYöntemi, standart giriş akışından bir çizgi okur.The ReadLine method reads a line from the standard input stream. (Bir çizginin tanımı için aşağıdaki listeden sonraki paragrafa bakın.) Bunun anlamı:(For the definition of a line, see the paragraph after the following list.) This means that:

  • Standart giriş aygıtı klavyedir ise ReadLine Yöntem, Kullanıcı ENTER tuşuna basana kadar engeller.If the standard input device is the keyboard, the ReadLine method blocks until the user presses the Enter key.

    Yönteminin en yaygın kullanımıdan biri, ReadLine konsolu temizlemeden ve yeni bilgiler görüntülenmeden önce programın yürütülmesini duraklatmanız ya da kullanıcının uygulamayı sonlandırmadan önce ENTER tuşuna basmasını ister.One of the most common uses of the ReadLine method is to pause program execution before clearing the console and displaying new information to it, or to prompt the user to press the Enter key before terminating the application. Aşağıdaki örnek bunu göstermektedir.The following example illustrates this.

    using namespace System;
    
    void main()
    {
        Console::Clear();
    
        DateTime dat = DateTime::Now;
    
        Console::WriteLine("\nToday is {0:d} at {0:T}.", dat);
        Console::Write("\nPress any key to continue... ");
        Console::ReadLine();
    }
    // The example displays output like the following:
    //     Today is 10/26/2015 at 12:22:22 PM.
    //     
    //     Press any key to continue...
    
    
    using System;
    
    public class Example
    {
       public static void Main()
       {
          Console.Clear();
    
          DateTime dat = DateTime.Now;
    
          Console.WriteLine("\nToday is {0:d} at {0:T}.", dat);
          Console.Write("\nPress any key to continue... ");
          Console.ReadLine();
       }
    }
    // The example displays output like the following:
    //     Today is 10/26/2015 at 12:22:22 PM.
    //
    //     Press any key to continue...
    
    
    Module Example
       Public Sub Main()
          Console.Clear()
    
          Dim dat As Date = Date.Now
    
          Console.WriteLine()
          Console.WriteLine("Today is {0:d} at {0:T}.", dat)
          Console.WriteLine()
          Console.Write("Press any key to continue... ")
          Console.ReadLine()
       End Sub
    End Module
    ' The example displays output like the following:
    '     Today is 10/26/2015 at 12:22:22 PM.
    '     
    '     Press any key to continue...
    
  • Standart giriş bir dosyaya yönlendirilirse, ReadLine Yöntem bir dosyadaki metin satırını okur.If standard input is redirected to a file, the ReadLine method reads a line of text from a file. Örneğin, aşağıda ReadLine1.txt adlı bir metin dosyası verilmiştir:For example, the following is a text file named ReadLine1.txt:

    
    This is the first line.
    This is the second line.
    This is the third line.
    This is the fourth line.
    
    

    Aşağıdaki örnek, ReadLine bir dosyadan yeniden yönlendirilen girişi okumak için yöntemini kullanır.The following example uses the ReadLine method to read input that is redirected from a file. Okuma işlemi, yöntemi döndürüldüğünde sonlanır. Bu, null okunmakta olan herhangi bir satır kaldığını gösterir.The read operation terminates when the method returns null, which indicates that no lines remain to be read.

    using System;
    
    public class Example
    {
       public static void Main()
       {
          if (! Console.IsInputRedirected) {
             Console.WriteLine("This example requires that input be redirected from a file.");
             return;
          }
    
          Console.WriteLine("About to call Console.ReadLine in a loop.");
          Console.WriteLine("----");
          String s;
          int ctr = 0;
          do {
             ctr++;
             s = Console.ReadLine();
             Console.WriteLine("Line {0}: {1}", ctr, s);
          } while (s != null);
          Console.WriteLine("---");
       }
    }
    // The example displays the following output:
    //       About to call Console.ReadLine in a loop.
    //       ----
    //       Line 1: This is the first line.
    //       Line 2: This is the second line.
    //       Line 3: This is the third line.
    //       Line 4: This is the fourth line.
    //       Line 5:
    //       ---
    
    Module Example
       Public Sub Main()
          If Not Console.IsInputRedirected Then
             Console.WriteLine("This example requires that input be redirected from a file.")
             Exit Sub 
          End If
    
          Console.WriteLine("About to call Console.ReadLine in a loop.")
          Console.WriteLine("----")
          Dim s As String
          Dim ctr As Integer
          Do
             ctr += 1
             s = Console.ReadLine()
             Console.WriteLine("Line {0}: {1}", ctr, s)
          Loop While s IsNot Nothing
          Console.WriteLine("---")
       End Sub
    End Module
    ' The example displays the following output:
    '       About to call Console.ReadLine in a loop.
    '       ----
    '       Line 1: This is the first line.
    '       Line 2: This is the second line.
    '       Line 3: This is the third line.
    '       Line 4: This is the fourth line.
    '       Line 5:
    '       ---
    

    Örnek, ReadLine1.exe adlı bir yürütülebilir dosyaya derlendikten sonra, komut satırından sözdizimi ile çalıştırabilirsinizAfter compiling the example to an executable named ReadLine1.exe, you can run it from the command line with the syntax

    ReadLine1 < ReadLine1.txt
    

    dosya içeriğini okumak ve konsola göstermek için.to read the contents of the file and display them to the console.

Bir satır, bir satır başı (onaltılık 0x000d), bir satır besleme (onaltılı bir 0x000a) veya özelliğin değeri tarafından izlenen bir karakter dizisi olarak tanımlanır Environment.NewLine .A line is defined as a sequence of characters followed by a carriage return (hexadecimal 0x000d), a line feed (hexadecimal 0x000a), or the value of the Environment.NewLine property. Döndürülen dize, Sonlandırıcı karakter (ler) i içermiyor.The returned string does not contain the terminating character(s). Yöntemi, varsayılan olarak, 256 karakterlik bir giriş arabelleğinden girişi okur.By default, the method reads input from a 256-character input buffer. Bu Environment.NewLine karakter (ler) de içerdiğinden, yöntem en fazla 254 karakter içeren satırları okuyabilir.Because this includes the Environment.NewLine character(s), the method can read lines that contain up to 254 characters. Daha uzun çizgileri okumak için yöntemini çağırın OpenStandardInput(Int32) .To read longer lines, call the OpenStandardInput(Int32) method.

ReadLineYöntemi zaman uyumlu olarak yürütülür.The ReadLine method executes synchronously. Diğer bir deyişle, bir satır okunana kadar ya da CTRL + Z klavye birleşimine basıldığında engeller.That is, it blocks until a line is read or the Ctrl+Z keyboard combination is pressed. InÖzelliği, TextReader standart giriş akışını temsil eden ve hem zaman uyumlu hem de zaman uyumsuz bir yöntem içeren bir nesnesi döndürür TextReader.ReadLine TextReader.ReadLineAsync .The In property returns a TextReader object that represents the standard input stream and that has both a synchronous TextReader.ReadLine method and an asynchronous TextReader.ReadLineAsync method. Ancak, konsolun standart giriş akışı olarak kullanıldığında, zaman TextReader.ReadLineAsync uyumsuz yerine eşzamanlı olarak yürütülür ve Task<String> yalnızca okuma işlemi tamamlandıktan sonra bir döndürür.However, when used as the console's standard input stream, the TextReader.ReadLineAsync executes synchronously rather than asynchronously and returns a Task<String> only after the read operation has completed.

Bu yöntem bir OutOfMemoryException özel durum oluşturursa, okuyucunun temel alınan nesnedeki konumu, Stream yöntemin okuyabildii karakter sayısına göre ilerleiyor, ancak iç arabellekte zaten okunan karakterler ReadLine atılır.If this method throws an OutOfMemoryException exception, the reader's position in the underlying Stream object is advanced by the number of characters the method was able to read, but the characters already read into the internal ReadLine buffer are discarded. Okuyucu akışın konumu değiştirilemediğinden, zaten okunan karakterler kurtarılamaz ve yalnızca yeniden başlatılarak erişilebilir TextReader .Since the position of the reader in the stream cannot be changed, the characters already read are unrecoverable, and can be accessed only by reinitializing the TextReader. Akıştaki ilk konum bilinmiyorsa veya akış aramayı desteklemiyorsa, temeldeki Stream Ayrıca yeniden başlatılması gerekir.If the initial position within the stream is unknown or the stream does not support seeking, the underlying Stream also needs to be reinitialized. Böyle bir durum oluşmasını önlemek ve güçlü kod oluşturmak için, KeyAvailable özelliği ve ReadKey yöntemini kullanmalı ve okuma karakterlerini önceden ayrılmış bir arabellekte depomalısınız.To avoid such a situation and to produce robust code, you should use the KeyAvailable property and ReadKey method and store the read characters in a pre-allocated buffer.

Yöntem konsolundan girişi okurken CTRL + Z karakterine basıldığında, yöntemi döndürür null .If the Ctrl+Z character is pressed when the method is reading input from the console, the method returns null. Bu, ReadLine Yöntem bir döngüde çağrıldığında kullanıcının daha fazla klavye girişini engellemesine olanak sağlar.This enables the user to prevent further keyboard input when the ReadLine method is called in a loop. Aşağıdaki örnekte bu senaryo gösterilmektedir.The following example illustrates this scenario.

using namespace System;

void main()
{
   String^ line;
   Console::WriteLine("Enter one or more lines of text (press CTRL+Z to exit):");
   Console::WriteLine();
   do { 
      Console::Write("   ");
      line = Console::ReadLine();
      if (line != nullptr) 
         Console::WriteLine("      " + line);
   } while (line != nullptr);   
}
// The following displays possible output from this example:
//       Enter one or more lines of text (press CTRL+Z to exit):
//       
//          This is line #1.
//             This is line #1.
//          This is line #2
//             This is line #2
//          ^Z
//       
//       >}
using System;

public class Example
{
   public static void Main()
   {
      string line;
      Console.WriteLine("Enter one or more lines of text (press CTRL+Z to exit):");
      Console.WriteLine();
      do {
         Console.Write("   ");
         line = Console.ReadLine();
         if (line != null)
            Console.WriteLine("      " + line);
      } while (line != null);
   }
}
// The following displays possible output from this example:
//       Enter one or more lines of text (press CTRL+Z to exit):
//
//          This is line #1.
//             This is line #1.
//          This is line #2
//             This is line #2
//          ^Z
//
//       >
Module Example
   Public Sub Main()
      Dim line As String
      Console.WriteLine("Enter one or more lines of text (press CTRL+Z to exit):")
      Console.WriteLine()
      Do 
         Console.Write("   ")
         line = Console.ReadLine()
         If line IsNot Nothing Then Console.WriteLine("      " + line)
      Loop While line IsNot Nothing   
   End Sub
End Module
' The following displays possible output from this example:
'       Enter one or more lines of text (press CTRL+Z to exit):
'       
'          This is line #1.
'             This is line #1.
'          This is line #2
'             This is line #2
'          ^Z
'       
'       >

Şunlara uygulanır

Ayrıca bkz.