我正在寻找与Java的unread()方法等效的C#。

等效于PushbackReader的C#应该是System.IO.StreamReader,但是StreamReader没有等效的“unread()”。它具有Peek(),但无法将字符放回流中。

Java代码:

// putBackChar puts the character back onto the stream
// adjusts current line number if necessary
private void putBackChar()
{
    if (ch == '\n')
        currentLine--;

    try
    {
        in.unread((int) ch);
    }
    catch (IOException e)
    {}
}

最佳答案

Peek 读取字符时不会将其弹出流,因此您无需将其放回流中。

09-26 00:14