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

(시리즈 글이 4개 있습니다.)
.NET Framework: 435. .NET GC - 하위 세대의 객체를 포함하는 상위 세대의 참조를 추적하기 위한 card-table
; https://www.sysnet.pe.kr/2/0/1670

.NET Framework: 458. 닷넷 GC가 순환 참조를 해제할 수 있을까요?
; https://www.sysnet.pe.kr/2/0/1740

.NET Framework: 2005. C# - 생성한 참조 개체가 언제 GC의 정리 대상이 될까요?
; https://www.sysnet.pe.kr/2/0/13052

.NET Framework: 2006. C# - GC.KeepAlive 메서드의 역할
; https://www.sysnet.pe.kr/2/0/13053




닷넷 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 구조의 프레임워크를 사용하는 것도 한 방법일 것입니다.
정성태

... 76  77  78  79  [80]  81  82  83  84  85  86  87  88  89  90  ...
NoWriterDateCnt.TitleFile(s)
11936정성태6/10/201918374Math: 58. C# - 최소 자승법의 1차, 2차 수렴 그래프 변화 확인 [2]파일 다운로드1
11935정성태6/9/201919942.NET Framework: 843. C# - PLplot 출력을 파일이 아닌 Window 화면으로 변경
11934정성태6/7/201921282VC++: 133. typedef struct와 타입 전방 선언으로 인한 C2371 오류파일 다운로드1
11933정성태6/7/201919610VC++: 132. enum 정의를 C++11의 enum class로 바꿀 때 유의할 사항파일 다운로드1
11932정성태6/7/201918789오류 유형: 544. C++ - fatal error C1017: invalid integer constant expression파일 다운로드1
11931정성태6/6/201919306개발 환경 구성: 441. C# - CairoSharp/GtkSharp 사용을 위한 프로젝트 구성 방법
11930정성태6/5/201919837.NET Framework: 842. .NET Reflection을 대체할 System.Reflection.Metadata 소개 [1]
11929정성태6/5/201919403.NET Framework: 841. Windows Forms/C# - 클립보드에 RTF 텍스트를 복사 및 확인하는 방법 [1]
11928정성태6/5/201918172오류 유형: 543. PowerShell 확장 설치 시 "Catalog file '[...].cat' is not found in the contents of the module" 오류 발생
11927정성태6/5/201919407스크립트: 15. PowerShell ISE의 스크립트를 복사 후 PPT/Word에 붙여 넣으면 한글이 깨지는 문제 [1]
11926정성태6/4/201919935오류 유형: 542. Visual Studio - pointer to incomplete class type is not allowed
11925정성태6/4/201919782VC++: 131. Visual C++ - uuid 확장 속성과 __uuidof 확장 연산자파일 다운로드1
11924정성태5/30/201921420Math: 57. C# - 해석학적 방법을 이용한 최소 자승법 [1]파일 다운로드1
11923정성태5/30/201921046Math: 56. C# - 그래프 그리기로 알아보는 경사 하강법의 최소/최댓값 구하기파일 다운로드1
11922정성태5/29/201918536.NET Framework: 840. ML.NET 데이터 정규화파일 다운로드1
11921정성태5/28/201924395Math: 55. C# - 다항식을 위한 최소 자승법(Least Squares Method)파일 다운로드1
11920정성태5/28/201916053.NET Framework: 839. C# - PLplot 색상 제어
11919정성태5/27/201920311Math: 54. C# - 최소 자승법의 1차 함수에 대한 매개변수를 단순 for 문으로 구하는 방법 [1]파일 다운로드1
11918정성태5/25/201921150Math: 53. C# - 행렬식을 이용한 최소 자승법(LSM: Least Square Method)파일 다운로드1
11917정성태5/24/201922136Math: 52. MathNet을 이용한 간단한 통계 정보 처리 - 분산/표준편차파일 다운로드1
11916정성태5/24/201919951Math: 51. MathNET + OxyPlot을 이용한 간단한 통계 정보 처리 - Histogram파일 다운로드1
11915정성태5/24/201923066Linux: 11. 리눅스의 환경 변수 관련 함수 정리 - putenv, setenv, unsetenv
11914정성태5/24/201922057Linux: 10. 윈도우의 GetTickCount와 리눅스의 clock_gettime파일 다운로드1
11913정성태5/23/201918764.NET Framework: 838. C# - 숫자형 타입의 bit(2진) 문자열, 16진수 문자열 구하는 방법파일 다운로드1
11912정성태5/23/201918726VS.NET IDE: 137. Visual Studio 2019 버전 16.1부터 리눅스 C/C++ 프로젝트에 추가된 WSL 지원
11911정성태5/23/201917493VS.NET IDE: 136. Visual Studio 2019 - 리눅스 C/C++ 프로젝트에 인텔리센스가 동작하지 않는 경우
... 76  77  78  79  [80]  81  82  83  84  85  86  87  88  89  90  ...