垃圾收集器何时收集单身人士?

时间:2013-08-19 12:37:21

标签: c# .net garbage-collection singleton

我在C#中有一些SomeSingleton类(如果重要,则为.NET 3.5)和代码:

foo()
{
    ...
    SomeSingleton.Instance.DoSomething();
    ...
}

我的问题是:垃圾收集器什么时候会收集这个Singleton对象?

p.s:SomeSingleton的代码:

    private static SomeSingleton s_Instance = null;
    public static SomeSingleton Instance
    {
        get 
        {
            if (s_Instance == null)
            {
                lock (s_InstanceLock)
                {
                    if (s_Instance == null)
                    {
                        s_Instance = new SomeSingleton();
                    }
                }
            }
            return s_Instance;
        }
    }

感谢您的帮助!

编辑(附说明):

在Widnows服务中,我有代码:

   ...
   FirstSingleton.Instance.DoSomething();
   ...

public class FirstSingleton
{
    (Instance part the same as in SomeSingleton)
    public void DoSomething()
    {
        SomeSingleton.Instance.DoSomething();
    }
}

我想要实现的目标: 我不关心FirstSingleton会发生什么,但SomeSingleton首先使用它启动Timer,所以我需要SomeSingleton存在(所以只要我的服务正在运行,计时器就可以在每个时间段运行新线程。)

正如我从你的答案中理解的那样,所有这一切都会发生,因为对我的FirstSingleton和SomeSingleton的引用是静态的,并且在服务停止之前GC不会收集单身人士,我是对的吗? :)

2 个答案:

答案 0 :(得分:5)

这个问题可以通过以下方式回答:Do static members ever get garbage collected?

基本上,当包含AppDomain将被销毁时,实例将被销毁。

答案 1 :(得分:1)

静态变量引用的对象只会在相关AppDomain被垃圾回收时进行垃圾回收。在客户端应用程序中,通常只有一个AppDomain在该过程的持续时间内存在。 (例外情况是,当应用程序使用插件架构时 - 可能会在不同的AppDomain中加载不同的插件,以后可能会卸载AppDomain。)

Refer