私はScanner
Javaに似た基本的なクラスを書いています。これが私が持っているものです(まあ、関連する部分):
using System.Text;
using System.Collections.Generic;
namespace System.IO
{
/// <summary>
/// <remarks>
/// Scanner is a wrapper for a <see cref="System.IO.TextReader" />
/// instance, making it easier to read values of certain types. It
/// also takes advantage of the
/// <see cref="System.IO.EndOfStreamException" /> class.
/// </remarks>
/// <seealso cref="System.IO.TextReader" />
/// </summary>
public class Scanner
{
private TextReader Reader;
private Queue<char> CharacterBuffer = new Queue<char>();
/// <summary>
/// <remarks>
/// Defaults to reading from <see cref="Console.In"/>
/// </remarks>
/// </summary>
public Scanner() : this(Console.In)
{
}
public Scanner(TextReader reader)
{
this.Reader = reader;
}
public char Peek()
{
if (this.CharacterBuffer.Count > 0)
return this.CharacterBuffer.Peek();
try
{
return Convert.ToChar(this.Reader.Peek());
}
catch (OverflowException)
{
throw new EndOfStreamException();
}
}
public char ReadChar()
{
if (this.CharacterBuffer.Count > 0)
return this.CharacterBuffer.Dequeue();
try
{
return Convert.ToChar(this.Reader.Read());
}
catch (OverflowException)
{
throw new EndOfStreamException();
}
}
}
}
私が実行したいくつかのテストから、これは実際のファイルではうまく機能しますが、stdinでは期待どおりに機能しません。Scanner.Peek
またはを使用するScanner.ReadChar
と、改行が送信された後、TextReader
インスタンスはそれがファイルの最後にあると見なし(私は思う)、EndOfStreamException
それ以降にインスタンスをスローして、this.Reader.Read
をthis.Reader.Peek
返します-1
。
StringReader
真のファイルとインスタンスをサポートしながら、新しい文字を要求するように強制するにはどうすればよいですか?