show/hide this revision's text 2 fixed code formatting

For 99% of cases, exposing a public field is fine.

The common advice is to use fields: "If you expose public fields from your classes you can't later change them to properties ". I know that we all want our code to be future-proof, but there are some problems with this thinking:

  • The consumers of your class can probably recompile when you change your interface.

  • 99% of your data members will never need to become non-trivial properties. It's speculative generality. You're writing a lot of code that will probaby never be useful.

  • If you need binary compatability across versions, making data members in to properties probably isn't enough. At the very least, you should only expose interfacess and hide all constructors, and expose factories :(see code below).


public class MyClass : IMyClass
{
    public static IMyClass New(...)
    {
        return new MyClass(...);
    }
}

It's a hard problem, trying to make code that will work in an uncertain future. Really hard.

Does anyone have an example of a time when using trivial properties saved their bacon?

show/hide this revision's text 1

For 99% of cases, exposing a public field is fine.

The common advice is to use fields: "If you expose public fields from your classes you can't later change them to properties ". I know that we all want our code to be future-proof, but there are some problems with this thinking:

  • The consumers of your class can probably recompile when you change your interface.

  • 99% of your data members will never need to become non-trivial properties. It's speculative generality. You're writing a lot of code that will probaby never be useful.

  • If you need binary compatability across versions, making data members in to properties probably isn't enough. At the very least, you should only expose interfacess and hide all constructors, and expose factories:

    public class MyClass : IMyClass { public static IMyClass New(...) { return new MyClass(...); } }

It's a hard problem, trying to make code that will work in an uncertain future. Really hard.

Does anyone have an example of a time when using trivial properties saved their bacon?