gpt4 book ai didi

c# - 为什么可以从属性访问私有(private) const 字段?

转载 作者:太空狗 更新时间:2023-10-29 21:48:49 25 4
gpt4 key购买 nike

这怎么可能?

namespace test
{
class Attr:Attribute
{
public Attr(int e)
{
}
}

[Attr(E)]
class Test
{
private const int E = 0;
}
}

这不违反封装原则吗?

最佳答案

不,这不违反封装。属性声明在逻辑上是类的一部分。 Attr 未访问 Test.E(它不能),您正在使用 E 调用 Attr 的构造函数> 来自 Test。这与初始化成员一样好。

C# 语法可能使它看起来像是属性以某种方式“位于”类之外,但事实并非如此。为此类生成的 IL 是这样的:

.class private auto ansi beforefieldinit test.Test
extends [mscorlib]System.Object
{
.custom instance void test.Attr::.ctor(int32) = (
01 00 00 00 00 00 00 00
)
// Fields
.field private static literal int32 E = int32(0)

...

} // end of class test.Test

如果 C# 采用类似的语法,它可能看起来像这样:

    class Test
{
attribute Attr(E);

private const int E = 0;
}

这会强调声明的范围,但可以说它不会那么清楚。当属性应用于成员时(在 IL 中,这些直接跟在声明之后),它变得更加不清楚。

关于c# - 为什么可以从属性访问私有(private) const 字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44239087/

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