gpt4 book ai didi

.NET 属性 : Why does GetCustomAttributes() make a new attribute instance every time?

转载 作者:行者123 更新时间:2023-12-04 01:39:10 26 4
gpt4 key购买 nike

所以我在 .NET 中使用了更多的属性,并意识到每次调用 Type.GetCustomAttributes() 都会创建我的属性的一个新实例。这是为什么?我认为属性实例基本上是一个单例每个成员信息,有 1 个实例绑定(bind)到类型、PropertyInfo 等...

这是我的测试代码:

using System;

namespace AttribTest
{
[AttributeUsage(AttributeTargets.Class)]
class MyAttribAttribute : Attribute
{
public string Value { get; set; }

public MyAttribAttribute()
: base()
{
Console.WriteLine("Created MyAttrib instance");
}
}

[MyAttrib(Value = "SetOnClass")]
class MyClass
{
}

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Getting attributes for MyClass.");
object[] a = typeof(MyClass).GetCustomAttributes(false);
((MyAttribAttribute)a[0]).Value = "a1";

Console.WriteLine("Getting attributes for MyClass.");
a = typeof(MyClass).GetCustomAttributes(false);
Console.WriteLine(((MyAttribAttribute)a[0]).Value);

Console.ReadKey();
}
}
}

现在,如果我要实现属性,我希望输出是:
Created MyAttrib instance
Getting attributes for MyClass.
Getting attributes for MyClass.
a1

“类加载器”(对不起,我有更多的 Java 背景,不是 100% 确定 .net 如何加载其类型)将编译 MyClass,并创建 MyAttribAttribute 的实例,并将它们一起存储在某个地方。 (如果这是 Java,可能是堆中的 Perm Gen)然后对 GetCustomAttributes() 的 2 次调用将返回相同的较早创建的实例。

但实际输出是:
Getting attributes for MyClass.
Created MyAttrib instance
Getting attributes for MyClass.
Created MyAttrib instance
SetOnClass

所以为什么?似乎为每次调用创建所有这些对象的新实例有点过分,并且不利于性能/内存管理。有没有办法总是一遍又一遍地获得相同的实例?

任何人都有任何想法为什么它是这样设计的?

我完全关心的原因是因为我创建了一个内部保存一些验证信息的自定义属性,所以在属性中我基本上有一个“private bool Validated”,我设置为 true。验证的东西需要一段时间,所以我不想每次都运行它。现在的问题是,由于每次我获取属性时它都会创建一个新的属性实例,因此 Validated 始终为“假”。

最佳答案

属性不作为对象存储在内存中,它们仅作为元数据存储在程序集中。当您查询它时,它将被构造并返回,并且通常属性是一次性对象,因此运行时保留它们以防万一您再次需要它们可能会浪费大量内存。

简而言之,您需要找到另一种方式来存储您的共享信息。

这是documentation关于属性。

关于.NET 属性 : Why does GetCustomAttributes() make a new attribute instance every time?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/417275/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com