析构函数何时调用自定义属性类?

时间:2010-07-13 08:19:11

标签: c# .net attributes custom-attributes

说我有这个班:

[AttributeUsage(AttributeTargets.Method)] 
public class MyAttribute : Attribute 
{ 
  public MyAttribute() 
  { 
    // Do stuff
  }

  ~MyAttribute()
  {
    // When is this called? When the function ends? Whenever the GC feels like?
  }
}

2 个答案:

答案 0 :(得分:1)

每当GC感觉像这样

无法调用析构函数。它们会自动调用。

Destructors (C# Programming Guide)

答案 1 :(得分:1)

在Reflector中调用GetCustomAttributes之后,代码的托管部分(即它转换到运行时并成为外部调用的点)在CustomAttribute.GetCustomAttributes中关闭。

此时,该方法正在检查正在加载属性的对象周围的元数据的字节。

那里有代码,然后进行进一步的反射以找到被调用的运行时构造函数。 E.g。

[MyAttribute]

将调用默认值,而

[MyAttribute(1, "hello", typeof(T))]

将调用一个带(Int, String, Type)

的构造函数

我看不到任何证据表明执行了任何实例缓存,因此意味着属性实例在反映时按需创建。

<强>证明

上述托管运行时转换发生在CustomAttribute._CreateCaObject。虽然不容易静态分析这个方法是否确实缓存了它创建的实例(它确实可能以内存缓冲区指针的形式获得足够的状态信息,可能指示属性声明所在的元数据中的位置),我们可以看一下事实:

  • 始终调用构造函数,
  • 始终读取并输入新的构造函数参数。

这告诉我该属性总是被构造。

当然,我们可以通过在测试中编写一段代码来测试它。

[TestMethod]
public void TestMethod1()
{
  //if running in MSTest you have to allow for the test runner to reflect 
  //over the class as it looks for the TestClass attribute - therefore if our
  //assumption is correct that a new instance is always constructed when 
  //reflecting, our counter check should start at 2, not 1.
  Type t = typeof(AttributeTest);
  var attributes = 
    t.GetCustomAttributes(typeof(AttributeTest.TheAttributeAttribute), false);  
  //check counter
  Assert.AreEqual(2, AttributeTest.TheAttributeAttribute.Counter);
  var attributes2 = 
    t.GetCustomAttributes(typeof(AttributeTest.TheAttributeAttribute), false);
  //should be one louder (sorry, 'one bigger' - the Spinal Tap influence :) )
  Assert.AreEqual(3, AttributeTest.TheAttributeAttribute.Counter);
}

[TheAttribute]
public class AttributeTest
{
  public class TheAttributeAttribute : Attribute
  {
    static int _counter = 0;

    public static int Counter { get { return _counter; } }

    public TheAttributeAttribute()
    {
      _counter++;
      Console.WriteLine("New");
    }
  }
}

因此,元数据属性的有效使用将是将它们缓存在用户代码中,除非该属性在某种程度上是可变的,使得它不适用于给定T的所有实例,或者对于m类型的实例,方法T的所有'实例'(在引号中,因为方法只存储在内存中一次)。

因此,一旦在代码中对它的所有引用都已为空,GC就可以使用该属性。对于该属性的所有成员也是如此。

因此,使用GetCustomAttributes()检索属性,使用它然后抛弃引用的方法刚刚发布了该属性的新实例,以便GC在需要时进行清理。

因此 - 属性实例由与所有类实例完全相同的内存管理和生存期规则控制;因此@PieterG在他的回答中说的是正确的 - 在释放对该属性的所有引用之后,可以随时调用析构函数。