Why do you think (or, why is it good that) Microsoft chose not to allow:

    public abstract class BaseClass
    {
        public abstract int Bar { get;}
    }

    public class ConcreteClass : BaseClass
    {
        public override int Bar
        {
            get { return 0; }
            set {}
        }
    }
link|improve this question
1  
StackOverflow has limited ability to answer questions on behalf of Microsoft. Consider rephrasing your question. – Jay Bazuzi Sep 18 '08 at 3:59
feedback

11 Answers

up vote 16 down vote accepted

Because the writer of Baseclass has explicitly declared that Bar has to be a read-only property. It doesn't make sense for derivations to break this contract and make it read-write.

I'm with Microsoft on this one.
Let's say I'm a new programmer who has been told to code against the Baseclass derivation. i write something that assumes that Bar cannot be written to (since the Baseclass explicitly states that it is a get only property). Now with your derivation, my code may break. e.g.

public class BarProvider
{ BaseClass _source;
  Bar _currentBar;

  public void setSource(BaseClass b)
  {
    _source = b;
    _currentBar = b.Bar;
  }

  public Bar getBar()
  { return _currentBar;  }
}

Since Bar cannot be set as per the BaseClass interface, BarProvider assumes that caching is a safe thing to do - Since Bar cannot be modified. But if set was possible in a derivation, this class could be serving stale values if someone modified the source object's Bar property externally. The point being 'Be Open, avoid doing sneaky things and surprising people*'

Update: Ilya Ryzhenkov asks 'Why don't interfaces play by the same rules then?' Hmm.. this gets muddier as I think about it.
An interface is a contract that says 'expect an implementation to have a read property named Bar.' Personally I'm much less likely to make that assumption of read-only if I saw an Interface. When i see a get-only property on an interface, I read it as 'Any implementation would expose this attribute Bar'... on a base-class it clicks as 'Bar is a read-only property'. Of course technically you're not breaking the contract.. you're doing more. So you're right in a sense.. I'd close by saying 'make it as hard as possible for misunderstandings to crop up'.

link|improve this answer
13  
I am still not convinced. Even if there is no explicit setter, this doesn't guarantee that the property will always return the same object - it can still be changed by some other method. – ripper234 Sep 17 '08 at 15:12
Updated with an example.. HTH – Gishu Sep 18 '08 at 4:05
Shouldn't the same be true for interfaces, then? You can have readonly property on interface and read/write on implementing type. – Ilya Ryzhenkov Sep 19 '08 at 18:52
Nice question... feeble attempt at answering it above :) – Gishu Sep 20 '08 at 6:26
9  
I disagree: the base class only declared the property as having no setter; that is not the same as the property being read-only. "Read-only" is only a meaning you assign to it. There are no relevant guarantees built into C# at all. You could have a get-only property that changes every time, or a get/set property where the setter throws an InvalidOperationException("This instance is read-only"). – romkyns Apr 3 '10 at 13:09
show 4 more comments
feedback

This is not impossible. You simply have to use the "new" keyword in your property. For example,

namespace {
    public class Base {
        private int _baseProperty = 0;

        public virtual int BaseProperty {
            get {
                return _baseProperty;
            }
        }

    }

    public class Test : Base {
        private int _testBaseProperty = 5;

        public new int BaseProperty {
            get {
                return _testBaseProperty;
            }
            set {
                _testBaseProperty = value;
            }
        }
    }
}

It appears as if this approach satisfies both sides of this discussion. Using "new" breaks the contract between the base class implementation and the subclass implementation. This is necessary when a Class can have multiple contracts (either via interface or base class).

Hope this helps, Matt Bolt

link|improve this answer
6  
This answer is wrong because the property marked new no longer overrides the virtual base one. In particular, if the base property is abstract, as it is in the original post, it is impossible to use the new keyword in a non-abstract subclass because you have to override all abstract members. – Timwi Apr 9 '11 at 13:12
feedback

I stumbled across the very same problem today and I think a have a very valid reason for wanting this.

First I'd like to argue that having a get-only property doesn't necessarily translate into read-only. I interpret it as "From this interface/abtract you can get this value", that doesn't mean that some implementation of that interface/abstract class wont need the user/program to set this value explicitly. Abstract classes serve the purpose of implementing part of the needed functionality. I see absolutely no reason why an inherited class couldn't add a setter without violating any contracts.

The following is a simplified example of what I needed today. I ended up having to add a setter in my abstract class just to get around this. The reason for adding the setter and not adding, say, a SetProp method is that one particular implementation of the interface used DataContract/DataMember for serialization of Prop, which would have been made needlessly complicated if I had to add another property just for the purpose of serialization.

    interface ITest
{
    // Other stuff
    string Prop { get; }
}

// Implements other stuff
abstract class ATest : ITest
{
    abstract public string Prop { get; }
}

// This implementation of ITest needs the user to set the value of Prop
class BTest : ATest
{
    string foo = "BTest";
    public override string Prop
    {
        get { return foo; }
        set { foo = value; } // Not allowed. 'BTest.Prop.set': cannot override because 'ATest.Prop' does not have an overridable set accessor
    }
}

// This implementation of ITest generates the value for Prop itself
class CTest : ATest
{
    string foo = "CTest";
    public override string Prop
    {
        get { return foo; }
        // set; // Not needed
    }
}

I know this is just a "my 2 cents" post, but I feel with the original poster and trying to rationalize that this is a good thing seems odd to me, especially considering that the same limitations doesn't apply when inheriting directly from an interface.

Also the mention about using new instead of override does not apply here, it simply doesn't work and even if it did it wouldn't give you the result wanted, namely a virtual getter as described by the interface.

link|improve this answer
feedback

You could perhaps go around the problem by creating a new property:

public new int Bar 
{            
    get { return 0; }
    set {}        
}

int IBase.Bar { 
  get { return Bar; }
}
link|improve this answer
But you can do this only when implementing an interface, not when inheriting from a base class. You'd have to choose another name. – svick May 5 '11 at 16:06
feedback

I think the main reason is simply that the syntax is too explicit for this to work any other way. This code:

public override int MyProperty { get { ... } set { ... } }

is quite explicit that both the get and the set are overrides. There is no set in the base class, so the compiler complains. Just like you can't override a method that's not defined in the base class, you can't override a setter either.

You might say that the compiler should guess your intention and only apply the override to the method that can be overridden (i.e. the getter in this case), but this goes against one of the C# design principles - that the compiler must not guess your intentions, because it may guess wrong without you knowing.

I think the following syntax might do nicely, but as Eric Lippert keeps saying, implementing even a minor feature like this is still a major amount of effort...

public int MyProperty
{
    override get { ... }
    set { ... }
}

or, for autoimplemented properties,

public int MyProperty { override get; set; }
link|improve this answer
feedback

I can understand all your points, but effectively, C# 3.0's automatic properties get useless in that case.

You can't do anything like that:

public class ConcreteClass : BaseClass
{
    public override int Bar
    {
        get;
        private set;
    }
}

IMO, C# should not restrict such scenarios. It's the responsibility of the developer to use it accordingly.

link|improve this answer
I don't understand your point. Do you concur that C# should allow adding a setter, or are you with most of the other people that answered this question? – ripper234 Sep 20 '08 at 15:21
1  
As I said, IMO, C# should allow adding a setter. It's the responsibility of the developer to use it accordingly. – Thomas Danecker Sep 23 '08 at 15:13
feedback

Because at the IL level, a read/write property translates into two (getter and setter) methods.

When overriding, you have to keep supporting the underlying interface. If you could add a setter, you would effectively be adding a new method, which would remain invisible to the outside world, as far as your classes' interface was concerned.

True, adding a new method would not be breaking compatibility per se, but since it would remain hidden, decision to disallow this makes perfect sense.

link|improve this answer
I don't care much about "the outside world" here. I want to add functionality to a class, which is always visible only to code that knows the specific class and not the base. – ripper234 Sep 17 '08 at 15:13
@ripper234 See Matt bolt's answer: if you want to make the new property visible only to users of the derived class you should use new instead of override. – Dan Berindei Dec 2 '10 at 9:21
It does not remain hidden. You're like saying you can't add a new method to a child-class because the new method will be "remain hidden from the outside world". Of course it's remain hidden from base-class perspective, but it's accessible from the clients of the child class. (I.e. to affect what the getter should return) – Sheepy Aug 17 '11 at 3:46
Sheepy, that's not what I'm saying at all. I mean, exactly as you pointed out, it would remain hidden "from a base-class perspective". That's why I appended "as far as your classes' interface was concerned". If you are subclassing a base class, it is almost certain that the "outside world" will be referring to your object instances with the base class type. If they would directly use your concrete class, you would not need compatibility with the base class and you could, by all means, use new with your additions. – Ishmaeel Aug 17 '11 at 10:13
feedback

Because that would break the concept of encapsulation and implementation hiding. Consider the case when you create a class, ship it, and then the consumer of your class makes himself able to set a property for which you originally provide a getter only. It would effectively disrupt any invariants of your class which you can depend on in your implementation.

link|improve this answer
-1: Having a setter does not automatically enable a descendant to break any invariants. The setter can still only change things that are already changeable by the descendant anyway. – romkyns Apr 9 '11 at 13:07
feedback

Because a class that has a read-only property (no setter) probably has a good reason for it. There might not be any underlying datastore, for example. Allowing you to create a setter breaks the contract set forth by the class. It's just bad OOP.

link|improve this answer
feedback

The problem is that for whatever reason Microsoft decided that there should be three distinct types of properties: read-only, write-only, and read-write, only one of which may exist with a given signature in a given context; properties may only be overridden by identically-declared properties. To do what you want it would be necessary to create two properties with the same name and signature--one of which was read-only, and one of which was read-write.

Personally, I wish that the whole concept of "properties" could be abolished, except that property-ish syntax could be used as syntactic sugar to call "get" and "set" methods. This would not only facilitate the 'add set' option, but would also allow for 'get' to return a different type from 'set'. While such an ability wouldn't be used terribly often, it could sometimes be useful to have a 'get' method return a wrapper object while the 'set' could accept either a wrapper or actual data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.