你必须刷新你的 BinaryWriter 数据吗

Do you have to flush your BinaryWriter data

在 C# 中,我像这样使用 BinaryWriter:

BinaryWriter br = new BinaryWriter(myPipe);
var bytes = new byte[5];
br.Write(bytes);
br.Flush();

https://msdn.microsoft.com/de-de/library/system.io.binarywriter.flush(v=vs.110).aspx 提到你应该使用刷新你的二进制编写器。

但是我注意到一旦调用 br.Write 就已经发送了数据,我认为不需要调用 br.Flush?

我想知道是否可以删除那 1 行(不必要的)代码:br.Flush() 或者是否还有更多代码?

这完全取决于所使用的流。刷新流意味着任何尚未写入的缓冲数据将在刷新期间写入。因此,如果您使用的流不缓冲任何数据,您将不会看到任何差异。如果您不刷新流,它将在您关闭它时被刷新。

您提到的文档仅说明:

All derived classes should override Flush to ensure that all buffered data is sent to the stream.

Flushing the stream will not flush its underlying encoder unless you explicitly call Flush or Close. Setting AutoFlush to true means that data will be flushed from the buffer to the stream, but the encoder state will not be flushed. This allows the encoder to keep its state (partial characters) so that it can encode the next block of characters correctly. This scenario affects UTF8 and UTF7 where certain characters can only be encoded after the encoder receives the adjacent character or characters.

使用 BinaryWriter 调用 Flush() 只是刷新底层流 ( BaseStream )。

这通常在底层流关闭时自动完成,因此在大多数情况下您不需要显式调用它,如果您使用 BinaryWriter 写入多条记录,并且底层流是一个 FileStream,它将不要每次都调用它会更有效率。

在将多条记录写入不同位置时,您也不需要在调用 Seek 之前调用 Flush(对于 BinaryWriter)。

对于其他缓冲数据的流写入类,情况可能有所不同。