Microsoft MVP성태의 닷넷 이야기
.NET Framework: 458. 닷넷 GC가 순환 참조를 해제할 수 있을까요? [링크 복사], [링크+제목 복사],
조회: 25363
글쓴 사람
정성태 (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 구조의 프레임워크를 사용하는 것도 한 방법일 것입니다.
정성태

... 16  17  18  19  20  21  22  23  24  25  26  27  28  [29]  30  ...
NoWriterDateCnt.TitleFile(s)
12928정성태1/18/20227315개발 환경 구성: 629. AKS/Kubernetes에서 호스팅 중인 pod에 shell(/bin/bash)로 진입하는 방법
12927정성태1/18/20227062개발 환경 구성: 628. AKS 환경에 응용 프로그램 배포 방법
12926정성태1/17/20227619오류 유형: 787. AKS - pod 배포 시 ErrImagePull/ImagePullBackOff 오류
12925정성태1/17/20227649개발 환경 구성: 627. AKS의 준비 단계 - ACR(Azure Container Registry)에 docker 이미지 배포
12924정성태1/15/20229171.NET Framework: 1134. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 비디오 디코딩 예제(decode_video.c) [2]파일 다운로드1
12923정성태1/15/20228046개발 환경 구성: 626. ffmpeg.exe를 사용해 비디오 파일을 MPEG1 포맷으로 변경하는 방법
12922정성태1/14/20227120개발 환경 구성: 625. AKS - Azure Kubernetes Service 생성 및 SLO/SLA 변경 방법
12921정성태1/14/20226044개발 환경 구성: 624. Docker Desktop에서 별도 서버에 설치한 docker registry에 이미지 올리는 방법
12920정성태1/14/20226841오류 유형: 786. Camtasia - An error occurred with the camera: Failed to Add Video Sampler.
12919정성태1/13/20226664Windows: 199. Host Network Service (HNS)에 의해서 점유되는 포트
12918정성태1/13/20226910Linux: 47. WSL - shell script에서 설정한 환경 변수가 스크립트 실행 후 반영되지 않는 문제
12917정성태1/12/20226009오류 유형: 785. C# - The type or namespace name '...' could not be found (are you missing a using directive or an assembly reference?)
12916정성태1/12/20225818오류 유형: 784. TFS - One or more source control bindings for this solution are not valid and are listed below.
12915정성태1/11/20226109오류 유형: 783. Visual Studio - We didn't find any interpreters
12914정성태1/11/20228189VS.NET IDE: 172. 비주얼 스튜디오 2022의 파이선 개발 환경 지원
12913정성태1/11/20228670.NET Framework: 1133. C# - byte * (바이트 포인터)를 FileStream으로 쓰는 방법 [1]
12912정성태1/11/20229343개발 환경 구성: 623. ffmpeg.exe를 사용해 비디오 파일의 이미지를 PGM(Portable Gray Map) 파일 포맷으로 출력하는 방법 [1]
12911정성태1/11/20226506VS.NET IDE: 171. 비주얼 스튜디오 - 더 이상 만들 수 없는 "ASP.NET Core 3.1 Web Application (.NET Framework)" 프로젝트
12910정성태1/10/20227053제니퍼 .NET: 30. 제니퍼 닷넷 적용 사례 (8) - CPU high와 DB 쿼리 성능에 문제가 함께 있는 사이트
12909정성태1/10/20228404오류 유형: 782. Visual Studio 2022 설치 시 "Couldn't install Microsoft.VisualCpp.Redist.14.Latest"
12908정성태1/10/20226212.NET Framework: 1132. C# - ref/out 매개변수의 IL 코드 처리
12907정성태1/9/20226763오류 유형: 781. (youtube-dl.exe) 실행 시 "This app can't run on your PC" / "Access is denied." 오류 발생
12906정성태1/9/20227406.NET Framework: 1131. C# - 네임스페이스까지 동일한 타입을 2개의 DLL에서 제공하는 경우 충돌을 우회하는 방법 [1]파일 다운로드1
12905정성태1/8/20227056오류 유형: 780. Could not load file or assembly 'Microsoft.VisualStudio.TextTemplating.VSHost.15.0, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.
12904정성태1/8/20229064개발 환경 구성: 623. Visual Studio 2022 빌드 환경을 위한 github Actions 설정 [1]
12903정성태1/7/20227653.NET Framework: 1130. C# - ELEMENT_TYPE_INTERNAL 유형의 사용 예
... 16  17  18  19  20  21  22  23  24  25  26  27  28  [29]  30  ...