如何为抽象类中的只读字段赋值?

发布于 2024-10-25 19:10:02 字数 101 浏览 1 评论 0原文

我在基本抽象类中有一个字段。我想将此字段设置为只读,以便在子类初始化后其值不会更改。

但抽象类不能有构造函数,只读只能从构造函数初始化。

如何实现这一目标?

I have a field in base abstract class. I want to make this field readonly so that its value do not changed after child class has been initialized.

But abstract class cannot have constructor and readonly can only be initialized from constructor.

How to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

例如,您可以从子类构造函数调用基类的构造函数,如下所示:

基类中的只读字段和构造函数:

public readonly int MyInt;

protected TheBaseClass(int myInt)
{
    this.MyInt = myInt;
}

子类中的构造函数:

public TheChildClass() : base(42)
{
}

public TheChildClass(int i) : base(i)
{
}

You could for instance call a the constructor of your base class from the child class constructor like this:

Readonly field and constructor in base class:

public readonly int MyInt;

protected TheBaseClass(int myInt)
{
    this.MyInt = myInt;
}

Constructors in child class:

public TheChildClass() : base(42)
{
}

public TheChildClass(int i) : base(i)
{
}
忘你却要生生世世 2024-11-01 19:10:02

abstract可以有构造函数。

public abstract class MyAbstract
{

    protected readonly string SomeField;

    public MyAbstract()
    {
        SomeField = "Some";
    }
}

public abstract class MyInheited
{


    public MyInheited(): base()
    {
    }
}

如果我是你,我会拥有该字段非只读受保护字段,但将其公开为公共只读属性

abstract class can have constructor.

public abstract class MyAbstract
{

    protected readonly string SomeField;

    public MyAbstract()
    {
        SomeField = "Some";
    }
}

public abstract class MyInheited
{


    public MyInheited(): base()
    {
    }
}

If I were you I would have the field not readonly protected field but expose it as public readonly property

江城子 2024-11-01 19:10:02

抽象类可以有一个构造函数,但它们不能被初始化。

Abstract classes CAN have a constructor, they can simply not be initiated.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文