gpt4 book ai didi

c# - 如何在 C# 中通过所有者控制类可见性

转载 作者:太空狗 更新时间:2023-10-30 00:33:02 24 4
gpt4 key购买 nike

我经常希望某些类 C1 的某些(或全部)函数只能从另一个类 C2 中访问,因为 C2 是一种代理,它拥有 C1 类型的对象(例如:类“Neuron”的方法,如“connect()”,只能从“Brain”访问)。我认为这在 C# 中无法直接实现,这与继承不同,在继承中我们可以使用“private”或“protected”等关键字指定可见性。

在这种情况下,最佳做法是什么?

最佳答案

为您的类创建一个程序集,并将外部世界不可见的内部类声明为internal:

internal (C# Reference):

The internal keyword is an access modifier for types and type members. Internal types or members are accessible only within files in the same assembly

所以,像这样:

namespace YourAssembly.Classes
{
internal class C1
{
public void Foo()
{

}
}

public class C2
{
public void DoFoo()
{
new C1().Foo();
}
}
}

此处 C2 可从其他程序集访问,而 C1 只能从同一程序集中访问。

关于c# - 如何在 C# 中通过所有者控制类可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14023249/

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