gpt4 book ai didi

c# - 为什么在同一个类中使用构造函数参数时可以访问私有(private)属性

转载 作者:行者123 更新时间:2023-11-30 21:30:35 25 4
gpt4 key购买 nike

我有一个有效的示例代码,但我无法解释为什么它会这样工作。

以这门课为例

 public class TestClass
{
private int _testValue;


public void TestMethod()
{
var t = new TestClass() {_testValue = 42}; // Why is that working?
}
}

为什么允许这样做?我原以为会有这样的行为:

static void Main(string[] args)
{

new TestClass() { _testValue = 23 }; // Does not compile and I am happy with that.

// The code provided will print ‘Hello World’ to the console.
// Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app.
Console.WriteLine("Hello World!");
Console.ReadKey();

// Go to http://aka.ms/dotnet-get-started-console to continue learning how to build a console app!
}

编辑:谢谢你的评论,但我知道 private 关键字是什么意思,问题是,当我在同一个对象中时,为什么我在使用参数构造函数时可以访问私有(private)属性。放置调试器,您会看到 TestClass this._testValuet._testValue

不同

我心目中的正常行为是我在 Main 函数中的行为。

Debugger.

最佳答案

private keyword
Private access is the least permissive access level. Private members are accessible only within the body of the class or the struct in which they are declared...
It is a compile-time error to reference a private member outside the class or the struct in which it is declared.

如果您查看 private 关键字的文档,与您的问题相关的“关键”部分是它可以在类的主体内访问,而不仅限于仅由与声明私有(private)成员或方法的实例相同。

在您添加的示例中,TestMethod 位于 TestClass 中,因此 TestMethod 中的代码可以访问其自身实例中的任何私有(private)方法或属性,并且它有权访问的任何其他实例。

这在关键字的引用定义中指出:TestMethod 是“在声明了 _testValue 的类的主体中”,因此它可以访问那些。

文档中没有限制访问必须通过特定实例,因此无论您如何创建或访问新的或不同的 TestClass inside TestMethod,您可以访问该实例的私有(private)成员和方法。

我们拥有 private 的原因之一是让内部结构远离不相关的代码,但仍然提供对其所属类的访问。这允许该类操作其自身的实例,这对于将内部 数据从对象的一个​​实例复制到另一个实例非常重要。你不想让那些public,因为那样的话任何其他不相关的代码都会有不需要的访问。

这种 private 的行为至少与 C++ 和 TypeScript 共享,并且它可能在大多数(如果不是所有)具有 publicprivate< 的编程语言中都很常见访问。

关于c# - 为什么在同一个类中使用构造函数参数时可以访问私有(private)属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54146671/

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