How to increase the access modifier of a property

前端 未结 3 1931
面向向阳花
面向向阳花 2021-01-04 18:17

I\'m trying to create a set of classes where a common ancestor is responsible for all the logic involved in setting various properties, and the descendants just change the a

相关标签:
3条回答
  • 2021-01-04 18:51

    NO. Still you can Hide the inherited property with Your's

    public class ChildTwo: Praent { 
        public new int PropertyTwo { 
           // do whatever you want
        }
    }
    

    ps: this is no longer virtual/override relationship (i.e. no polymorphic calls)

    0 讨论(0)
  • 2021-01-04 19:12

    You can't change the access, but you can re-declare the member with greater access:

    public new int PropertyOne
    {
        get { return base.PropertyOne; }
        set { base.PropertyOne = value; }
    }
    

    The problem is that this is a different PropertyOne, and inheritance / virtual might not work as expected. In the above case (where we just call base.*, and the new method isn't virtual) that is probably fine. If you need real polymorphism above this, then you can't do it (AFAIK) without introducing an intermediate class (since you can't new and override the same member in the same type):

    public abstract class ChildOneAnnoying : Parent {
        protected virtual int PropertyOneImpl {
            get { return base.PropertyOne; }
            set { base.PropertyOne = value; }
        }
        protected override int PropertyOne {
            get { return PropertyOneImpl; }
            set { PropertyOneImpl = value; }
        }
    }
    public class ChildOne : ChildOneAnnoying {
        public new int PropertyOne {
            get { return PropertyOneImpl; }
            set { PropertyOneImpl = value; }
        }
    }
    

    The important point in the above is that there is still a single virtual member to override: PropertyOneImpl.

    0 讨论(0)
  • 2021-01-04 19:15

    You can do this by using "new" instead of "override" to hide the parent's protected property as follows:

    public class ChildOne : Parent
    {
        public new int PropertyOne  // No Compiler Error
        {
            get { return base.PropertyOne; }
            set { base.PropertyOne = value; }
        }
        // PropertyTwo is not available to users of ChildOne
    }
    
    public class ChildTwo : Parent
    {
        // PropertyOne is not available to users of ChildTwo
        public new int PropertyTwo
        {
            get { return base.PropertyTwo; }
            set { base.PropertyTwo = value; }
        }
    }
    
    0 讨论(0)
提交回复
热议问题