Microsoft MVP성태의 닷넷 이야기
.NET Framework: 458. 닷넷 GC가 순환 참조를 해제할 수 있을까요? [링크 복사], [링크+제목 복사]
조회: 25002
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

닷넷 GC가 순환 참조를 해제할 수 있을까요?

아래와 같은 질문이 있군요. ^^

c# 상호참조 질문 
; http://lab.gamecodi.com/board/zboard.php?id=GAMECODILAB_QnA_etc&page=1&page_num=35&select_arrange=last_comment&desc=desc&sn=off&ss=on&sc=on&keyword=&no=3167&category=

질문의 내용은, 닷넷 GC가 순환 참조를 해제할 수 있느냐입니다. 사실, 이 문제는 WeakReference를 이용해 간단하게 테스트 해볼 수 있습니다. ^^

using System;

namespace circular_ref
{
    class Program
    {
        static void Main(string[] args)
        {
            WeakReference wrA = null;
            WeakReference wrB = null;

            CallCrossRef(ref wrA, ref wrB);

            Console.WriteLine((wrA.Target as RefA)._a);
            Console.WriteLine((wrB.Target as RefB)._b);
        }

        private static void CallCrossRef(ref WeakReference wrA, ref WeakReference wrB)
        {
            RefA a = new RefA();
            RefB b = new RefB();

            wrA = new WeakReference(a);
            wrB = new WeakReference(b);

            a._instanceB = b;
            a._a = 5;
            b._instanceA = a;
            b._b = 6;
        }
    }

    public class RefA
    {
        public RefB _instanceB;
        public int _a;
    }

    public class RefB
    {
        public RefA _instanceA;
        public int _b;
    }
}

서로 순환 참조하고 있고 위의 결과를 실행하면 5와 6값이 화면에 출력됩니다.

하지만, 다음과 같이 GC.Collect를 한번 해주면,

static void Main(string[] args)
{
    WeakReference wrA = null;
    WeakReference wrB = null;

    CallCrossRef(ref wrA, ref wrB);

    GC.Collect();

    Console.WriteLine((wrA.Target as RefA)._a);
    Console.WriteLine((wrB.Target as RefB)._b);
}

GC가 동작하고 순환참조임에도 불구하고 정상적으로 RefA a, RefB b 인스턴스가 해제된 것을 확인할 수 있습니다.

GC의 동작과 관련해서는 card-table 개념과 함께 소개해 드렸던 링크에서,

.NET GC - 하위 세대의 객체를 포함하는 상위 세대의 참조를 추적하기 위한 card-table
; https://www.sysnet.pe.kr/2/0/1670

마이크로소프트 측 직원이 아주 자세하게 설명해 주고 있으니 참고하시는 것도 좋겠습니다. ^^

  1. Memory allocation, a walk down the history
  2. Why use garbage collection
  3. Reference Counting Garbage Collection
  4. Mark-sweep garbage collection
  5. Copying garbage collection
  6. Optimizing reference counting garbage collection
  7. Handling overflow in mark stage
  8. Generational Garbage Collection
  9. How does the GC find object references




추가적으로! 참조로 인한 메모리 릭이 발생할 수 있는 전형적인 사례가 하나 있는데 바로 "이벤트"입니다. 테스트를 위해 다음과 같이 코드를 만들어 보면,

using System;

namespace circular_ref
{
    class Program
    {
        static void Main(string[] args)
        {
            CallEventFire();
            GC.Collect();

            Console.ReadLine();
        }

        private static void CallEventFire()
        {
            EventPublisher publisher = new EventPublisher();
            EventSubscriber subscriber = new EventSubscriber();
            publisher.Fire += subscriber.DoFire;
        }
    }

    public class EventPublisher
    {
        public delegate void FireEvent();
        public event FireEvent Fire;

        protected void OnFire()
        {
            if (Fire != null)
            {
                Fire();
            }
        }

        ~EventPublisher()
        {
            Console.WriteLine("~EventPublisher.Called()");
        }
    }

    public class EventSubscriber
    {
        public void DoFire()
        {
        }

        ~EventSubscriber()
        {
            Console.WriteLine("~EventSubscriber.Called()");
        }
    }
}

GC.Collect 이후 정상적으로 2개의 소멸자가 모두 호출되는 것을 볼 수 있습니다. 그런데 이 상태에서 "EventPublisher publisher = new EventPublisher();"의 코드를 static으로 빼면 어떻게 될까요?

static EventPublisher publisher = new EventPublisher();

private static void CallEventFire()
{
 // EventPublisher publisher = new EventPublisher();
    EventSubscriber subscriber = new EventSubscriber();
    publisher.Fire += subscriber.DoFire;
}

얼핏 보면, publisher 인스턴스는 static 루트 객체가 있으니 소멸되지 않겠지만 subscriber 인스턴스는 범위를 벗어났으니 힙에서 제거되어야 합니다.

하지만, 아무런 소멸자도 호출되지 않습니다. 왜냐하면 이벤트 구독 자체가 대상 객체를 참조하기 때문입니다. 이런 일이 발생하는 흔한 경우가 바로 이벤트 구독이 남발하는 윈도우 폼 응용 프로그램입니다. Form 위에서 동적으로 컨트롤을 생성/삭제하는 경우 그 컨트롤에 이벤트 핸들러를 걸어 두면 객체가 힙에 쌓이게 됩니다. (다행히, 대부분의 윈도우 폼 응용 프로그램은 사용자가 필요 없을 때 종료시키기 때문에 메모리 릭 문제에서 비교적 자유롭습니다.)

물론, 해결 방법은 그냥 필요 없어졌을 때 이벤트 구독을 해제하면 됩니다. 위의 예제에서는 다음과 같이 추가해 주면 됩니다.

private static void CallEventFire()
{
    // EventPublisher publisher = new EventPublisher();
    EventSubscriber subscriber = new EventSubscriber();
    publisher.Fire += subscriber.DoFire;
    publisher.Fire -= subscriber.DoFire;
}

이렇게 하고 나서 다시 실행해 보면, GC.Collect 호출에서 "~EventSubscriber.Called()" 출력을 볼 수 있습니다.

(첨부 파일은 위의 예제 코드를 포함합니다.)




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 5/9/2022]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2014-08-25 11시50분
[ryujh] 안녕하세요. 이벤트 설명에서 의문점 있습니다.
publisher.Fire += subscriber.DoFire; 이렇게 명시적으로 했으니 publisher.Fire -= subscriber.DoFire; 하면 되겠지만
publisher.Fire += subscriber.DoFire; publisher.Fire += subscriber.DoFire; 이렇게 두번 이상했을 때(이러면 안되지만) publisher.Fire -= subscriber.DoFire; 이것을 두번 이상하려고 publisher.Fire 에 몇개 핸들러가 등록되었는지 찾아보려고 해도 알 수 없습니다. 처음부터 이런 문제 없도록 코드를 잘 작성할 수 밖에 없는지요?
[guest]
2014-08-26 12시33분
아래와 같은 방법이 있긴 하지만,

이벤트에 속한 이벤트 핸들러 확인
; http://www.sysnet.pe.kr/2/0/618

WPF 이벤트에 속한 핸들러 확인
; http://www.sysnet.pe.kr/2/0/624

너무 복잡한 경우에는 위와 같은 방법으로 세고 나서 해제하는 것도 상관없지만, 일반적으로는 저렇게 하는 것이 더 복잡할 수 있기 때문에 그냥 횟수를 관리하는 편이 좋을 것입니다. (현실적으로 봤을 때 중복하는 경우는 사실 많지 않지요.)

만약 중구난방으로 이벤트 구독/해제가 발생할 수 있는 상황이라면, WPF Prism 같은 프레임워크에서처럼 이벤트 publisher/subscriber 구조의 프레임워크를 사용하는 것도 한 방법일 것입니다.
정성태

1  2  3  4  5  6  7  8  9  10  [11]  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13357정성태5/16/20233575.NET Framework: 2124. C# - Semantic Kernel의 Planner 사용 예제파일 다운로드1
13356정성태5/15/20233901DDK: 10. Device Driver 테스트 설치 관련 오류 (Code 37, Code 31) 및 인증서 관련 정리
13355정성태5/12/20233836.NET Framework: 2123. C# - Semantic Kernel의 ChatGPT 대화 구현 [1]파일 다운로드1
13354정성태5/12/20234095.NET Framework: 2122. C# - "Use Unicode UTF-8 for worldwide language support" 설정을 한 경우, 한글 입력이 '\0' 문자로 처리
13352정성태5/12/20233704.NET Framework: 2121. C# - Semantic Kernel의 대화 문맥 유지파일 다운로드1
13351정성태5/11/20234209VS.NET IDE: 185. Visual Studio - 원격 Docker container 내에 실행 중인 응용 프로그램에 대한 디버깅 [1]
13350정성태5/11/20233480오류 유형: 859. Windows Date and Time - Unable to continue. You do not have permission to perform this task
13349정성태5/11/20233791.NET Framework: 2120. C# - Semantic Kernel의 Skill과 Function 사용 예제파일 다운로드1
13348정성태5/10/20233689.NET Framework: 2119. C# - Semantic Kernel의 "Basic Loading of the Kernel" 예제
13347정성태5/10/20234082.NET Framework: 2118. C# - Semantic Kernel의 Prompt chaining 예제파일 다운로드1
13346정성태5/10/20233912오류 유형: 858. RDP 원격 환경과 로컬 PC 간의 Ctrl+C, Ctrl+V 복사가 안 되는 문제
13345정성태5/9/20235313.NET Framework: 2117. C# - (OpenAI 기반의) Microsoft Semantic Kernel을 이용한 자연어 처리 [1]파일 다운로드1
13344정성태5/9/20236491.NET Framework: 2116. C# - OpenAI API 사용 - 지원 모델 목록 [1]파일 다운로드1
13343정성태5/9/20234365디버깅 기술: 192. Windbg - Hyper-V VM으로 이더넷 원격 디버깅 연결하는 방법
13342정성태5/8/20234273.NET Framework: 2115. System.Text.Json의 역직렬화 시 필드/속성 주의
13341정성태5/8/20234007닷넷: 2114. C# 12 - 모든 형식의 별칭(Using aliases for any type)
13340정성태5/8/20234080오류 유형: 857. Microsoft.Data.SqlClient.SqlException - 0x80131904
13339정성태5/6/20234746닷넷: 2113. C# 12 - 기본 생성자(Primary Constructors)
13338정성태5/6/20234265닷넷: 2112. C# 12 - 기본 람다 매개 변수파일 다운로드1
13337정성태5/5/20234769Linux: 59. dockerfile - docker exec로 container에 접속 시 자동으로 실행되는 코드 적용
13336정성태5/4/20234577.NET Framework: 2111. C# - 바이너리 출력 디렉터리와 연관된 csproj 설정
13335정성태4/30/20234677.NET Framework: 2110. C# - FFmpeg.AutoGen 라이브러리를 이용한 기본 프로젝트 구성 - Windows Forms파일 다운로드1
13334정성태4/29/20234312Windows: 250. Win32 C/C++ - Modal 메시지 루프 내에서 SetWindowsHookEx를 이용한 Thread 메시지 처리 방법
13333정성태4/28/20233754Windows: 249. Win32 C/C++ - 대화창 템플릿을 런타임에 코딩해서 사용파일 다운로드1
13332정성태4/27/20233855Windows: 248. Win32 C/C++ - 대화창을 위한 메시지 루프 사용자 정의파일 다운로드1
13331정성태4/27/20233885오류 유형: 856. dockerfile - 구 버전의 .NET Core 이미지 사용 시 apt update 오류
1  2  3  4  5  6  7  8  9  10  [11]  12  13  14  15  ...