从超类获取字段

本文关键字:字段 获取 超类 | 更新日期: 2023-09-27 18:14:55

我有以下抽象类:

 abstract class Customer
{
    private string address { get; set; }
    private int phone { get; set; }
    public Customer(string address, int phone)
    {
        this.address = address;
        this.phone = phone;
    }
}

然后我有以下类继承自客户类:

   class Private : Customer
{
    private string name { get; set; }
    private int age { get; set; }
    private string sex { get; set; }
    public Private(string name, int age, string sex, string address, int phone) : base(address, phone)
    {
        this.name = name;
        this.age = age;
        this.sex = sex;
    }

我的问题是:我如何访问我的私人类的电话和地址字段?

从超类获取字段

对于继承类可以访问的所有内容使用protected修饰符而不是private

From the docs:

受保护的成员可以在其类内部和派生类实例中访问。

https://msdn.microsoft.com/en-us/library/bcd5672a.aspx