>백엔드 개발 >C++ >C#에서 IDisposable을 언제 구현해야 합니까?

C#에서 IDisposable을 언제 구현해야 합니까?

DDD
DDD원래의
2025-01-04 02:35:42841검색

When Should You Implement IDisposable in C#?

올바른 방법 처리: IDisposable 구현

IDisposable을 구현하면 관리되지 않는 리소스와 일회용 항목을 결정적으로 해제할 수 있습니다. 코드 조각에서 User 클래스는 관리되지 않는 리소스나 삭제 가능한 참조를 처리하지 않으므로 삭제가 필요하지 않습니다. 이 문제는 클래스를 봉인된 것으로 표시하여 파생 클래스가 IDisposable을 재정의하는 것을 효과적으로 방지함으로써 해결할 수 있습니다.

더 자세한 예를 보려면 관리되지 않는 리소스(예: 파일 핸들)와 IDisposable을 모두 관리하는 ResourceManager라는 클래스를 고려해 보겠습니다. 참조(예: 데이터베이스 연결).

Unmanaged와 함께 IDisposable 사용 리소스:

public class ResourceManager : IDisposable
{
    private FileStream fileStream;

    public ResourceManager()
    {
        // Allocate and open the file handle
        fileStream = new FileStream("myfile.txt", FileMode.Open);
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        if (disposing)
        {
            // Free managed resources
            fileStream?.Close();
            fileStream?.Dispose();
        }
        // Free native resources
        fileStream.Dispose();
    }
}

일회용 참조와 함께 IDisposable 사용:

public class ResourceManager : IDisposable
{
    private DisposableReference reference;

    public ResourceManager()
    {
        // Obtain the disposable reference
        reference = new DisposableReference();
    }

    public void Dispose()
    {
        Dispose(true);
        GC.SuppressFinalize(this);
    }

    protected virtual void Dispose(bool disposing)
    {
        if (disposing)
        {
            // Free managed resources
            reference?.Dispose();
        }
    }
}

위 내용은 C#에서 IDisposable을 언제 구현해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.