通常,“使用”是用于正确访问和处置文件流的首选方法。

我经常需要打开文件(如下所示)。在这种情况下可以使用“使用”结构吗?

public class logger
{
    private StreamWriter sw;
    public logger(string fileName)
    {
        sw = new StreamWriter(fileName, true);
    }

    public void LogString(string txt)
    {
        sw.WriteLine(txt);
        sw.Flush();
    }

    public void Close()
    {
        sw.Close();
    }
}

最佳答案

是的,您将Logger设置为可抛弃的,并在其dispose方法中将其处置流。

// I make it sealed so you can use the "easier" dispose pattern, if it is not sealed
// you should create a `protected virtual void Dispose(bool disposing)` method.
public sealed class logger : IDisposable
{
    private StreamWriter sw;
    public logger(string fileName)
    {
        sw = new StreamWriter(fileName, true);
    }

    public void LogString(string txt)
    {
        sw.WriteLine(txt);
        sw.Flush();
    }

    public void Close()
    {
        sw.Close();
    }

    public void Dispose()
    {
        if(sw != null)
            sw.Dispose();
    }
}

关于c# - 有没有一种方法可以使用 "using",但保持文件打开状态?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26761729/

10-12 14:52