Have trivial properties ever saved your bacon? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T14:20:25Z http://stackoverflow.com/feeds/question/205568 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon 8 Have trivial properties ever saved your bacon? Jay Bazuzi 2008-10-15T17:05:42Z 2008-10-16T03:11:51Z <p>There's a lot of advice out there that you shouldn't expose your fields publically, and instead use trivial properties. I see it over &amp; over.</p> <p>I understand the arguments, but <a href="http://stackoverflow.com/questions/174198/c35-automatic-properties-why-not-access-the-field-directly#205567">I don't think it's good advice in most cases</a>.</p> <p>Does anyone have an example of a time when it really mattered? When writing a trivial property made something important possible in the future (or when failing to use one got them in to real trouble)?</p> <p>EDIT: The DataBinding argument is correct, but not very interesting. It's a bug in the DataBinding code that it won't accept public fields. So, we have to write properties to work around that bug, not because properties are a wise class design choice.</p> <p>EDIT: To be clear, I'm looking for real-world examples, not theory. A time when it really mattered.</p> <p>EDIT: The ability to set a breakpoint on the setter seems valuable. Designing my code for the debugger is unfortunate: I'd rather the debugger get smarter, but given the debugger we have, I'll take this ability. Good stuff.</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205577#205577 9 Answer by Jason Bunting for Have trivial properties ever saved your bacon? Jason Bunting 2008-10-15T17:10:04Z 2008-10-15T17:10:04Z <p>Part of the idea is that those properties may not be trivial in the future - if you bound external code to a field and later wanted to wrap that in a property, all of the dependent code would have to change, and you may not be able to do that, especially in the case where you are a control designer or have libraries that you can't control, etc.</p> <p>Not to mention there are certain .NET practices that will not allow you to use a field - databinding particularly.</p> <p>I am sure there are other good reasons as well. Why does it matter to you? Use an automatic property and be done with it. Seems like something not worth being concerned about to me...</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205610#205610 8 Answer by Joel Coehoorn for Have trivial properties ever saved your bacon? Joel Coehoorn 2008-10-15T17:17:32Z 2008-10-15T17:35:23Z <p>I used to think the same thing, Jay. Why use a property if it's only there to provide <em>direct</em> access to a private member? If you can describe it as an autoproperty, having a property at all rather than a field seemed kind of silly. Even if you ever need to change the implementation, you could always just refactor into a real property later and any dependent code would still work, right?. Well, maybe not.</p> <p>You see, I've recently seen the light on trivial properties, so maybe now I can help you do the same.</p> <p>What finally convinced me was the fairly obvious point (in retrospect) that properties in .Net are just syntactic sugar for getter and setter methods, and those methods have a <em>different name</em> from the property itself. Code in the same assembly will still work, because you have to recompile it at the same time anyway. But any code in a different assembly that links to yours will <em>fail</em> if you refactor a field to a property, unless it's recompiled against your new version at the same time. If it's a property from the get-go, everything is still good.</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205617#205617 1 Answer by chills42 for Have trivial properties ever saved your bacon? chills42 2008-10-15T17:19:22Z 2008-10-15T17:19:22Z <p>I once had fields that I wanted to expose from a windows from project which allowed the stats for the program (TotalItems and SuccessfulItems).</p> <p>Later I decided to display the stats on the form and was able to add a call in the setter that updated the display when the property changed.</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205623#205623 9 Answer by JaredPar for Have trivial properties ever saved your bacon? JaredPar 2008-10-15T17:21:29Z 2008-10-15T17:21:29Z <p>I've had a trivial property save me a couple of times when debugging. .Net doesn't support the concept of a data break point (read or write). Occasionally when debugging a very complex scenario it was important to track read/writes to a particular property. This is easy with a property but impossible with a field. </p> <p>If you're not working in a production environment, it's simple to refactor a field -> property for the purpose of debugging. Occasionally though you hit bugs that only reproduce in a production environment that is difficult to patch with a new binary. A property can save you here. </p> <p>It's a fairly constrained scenario though. </p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205626#205626 2 Answer by Jeff Yates for Have trivial properties ever saved your bacon? Jeff Yates 2008-10-15T17:22:15Z 2008-10-15T17:22:15Z <p>It's much easier to debug a problem involving a field if it is wrapped by a property accessor. Placing breakpoints in the accessor can quite quickly help with finding re-entrancy and other issues that otherwise might not be caught. By marshaling all access to the field through an accessor, you can ascertain exactly who is changing what and when.</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205638#205638 1 Answer by John Kraft for Have trivial properties ever saved your bacon? John Kraft 2008-10-15T17:24:38Z 2008-10-15T17:32:56Z <p>In .NET, from my understanding, you cannot databind to public fields; but only to properties. Thus, if you want to do databinding, you have no choice.</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205667#205667 1 Answer by Joe for Have trivial properties ever saved your bacon? Joe 2008-10-15T17:35:18Z 2008-10-15T17:35:18Z <p>Obviously, if you're not creating a shared class library, and you're not using DataBinding, then using a field will cause you no problems whatsoever.</p> <p>But if you're creating a shared class library, you'd be foolish IMHO to do otherwise than follow the guidelines, for the usual three reasons:</p> <ul> <li><p>consumers of your shared class library may want to use DataBinding.</p></li> <li><p>consumers of your shared class might want binary compatibility, which is not possible if you switch from a field to a property. </p></li> <li><p>the principal of least surprise implies you should be consistent with other shared class libraries including the .NET Framework itself.</p></li> </ul> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205743#205743 0 Answer by Daniel Auger for Have trivial properties ever saved your bacon? Daniel Auger 2008-10-15T17:55:51Z 2008-10-15T17:55:51Z <p>IMHO there is no such thing as a trivial property as people have been calling them. Via the way things such as databinding work, Microsoft has implied that any bit of data that is a part of the public interface of an object should be a property. I don't think they meant it merely to be a convention like it is in some other languages where property syntax is more about convention and convenience. </p> <p>A more interesting question may be: "When should I use a public field instead of a property", or "When has a public field instead of a public property saved your bacon?" </p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205876#205876 5 Answer by Jon Skeet for Have trivial properties ever saved your bacon? Jon Skeet 2008-10-15T18:33:19Z 2008-10-15T18:33:19Z <p>I'll answer your question with another one: have you ever really benefited from not making all your types and members public? I suspect I haven't directly prevented any bugs by doing so. However, I've encapsulated my types properly, only exposing what's meant to be exposed. Properties are similar - good design more than anything else. I think of properties as conceptually different from fields; they're part of the contract rather than being fundamentally part of the implementation. Thinking about them as properties rather than fields helps me to think more clearly about my design, leading to better code.</p> <p>Oh, and I've benefited occasionally from not breaking source compatibility, being able to set breakpoints, log access etc.</p> http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/207146#207146 6 Answer by Robert Paulson for Have trivial properties ever saved your bacon? Robert Paulson 2008-10-16T01:38:33Z 2008-10-16T03:11:51Z <p>It may be hard to make code work in an uncertain future, but that's no excuse to be lazy. Coding a property over a field is convention and it's pragmatic. Call it defensive programming. </p> <p>Other people will also complain that there's a speed issue, but the JIT'er is smart enough to make it just about as fast as exposing a public field. Fast enough that I'll never notice.</p> <p>Some non-trivial things that come to mind</p> <ol> <li>A public field is totally public, you can not impose read-only or write-only semantics</li> <li>A property can have have different <code>get</code> versus <code>set</code> accessibility (e.g. public get, internal set)</li> <li>You can not override a field, but you can have virtual properties. </li> <li>Your class has no control over the public field</li> <li>Your class can control the property. It can limit setting to allowable range of values, flag that the state was changed, and even lazy-load the value.</li> <li>Reflection semantics differ. A public field is not a property.</li> <li>No databinding, as others point out. (It's only a bug to you. - I can understand Why .net framework designers do not support patterns they are not in favour of.)</li> <li>You can not put a field on an interface, but you can put a property on an interface.</li> <li>Your property doesn't even need to store data. You can create a facade and dispatch to a contained object.</li> </ol> <p>You only type an extra 13 characters for correctness. That hardly seems like speculative generality. There is a semantic difference, and if nothing else, a property has a different semantic meaning and is far more flexible than a public field.</p> <pre><code> public string Name { get; set; } public string name; </code></pre> <p>I do recall one time when first using .net I coded a few classes as just fields, and then I needed to have them as properties for some reason, and it was a complete waste of time when I could have just done it right the first time.</p> <p>So what reasons do you have for <em>not</em> following convention? Why do you feel the need to swim upstream? What has it saved you by not doing this?</p>