Sometimes you have a private field that backs a property, you only ever want to set the field via the property setter so that additional processing can be done whenever the field changes. The problem is that it's still easy to accidentally bypass the property setter from within other methods of the same class and not notice that you've done so. Is there a way in C# to work around this or a general design principle to avoid it? Thanks.
|
3
|
|||||||
|
|
|
IMHO, it is not used, because:
|
||||||
|
|
|
There's no inbuilt way to do what you want to do, but by the sounds of things you need another layer of abstraction between your class and that value. Create a separate class and put the item in there, then your outer class contains the new class, and you can only access it through it's properties. |
||
|
|
|
|
I'd consider this a nasty hack and try to avoid it if possible, but... You can mark the backing field as obsolete so that the compiler will generate a warning when you try to access it, and then suppress that warning for the property getter/setter. The warning codes that you'd need to suppress are CS0612 for the plain
|
||||||||||||||||||||
|
|
|
No, there isn't. I'd quite like this myself - something along the lines of:
I think I first suggested this about 5 years ago on the C# newsgroups... I don't expect to ever see it happen though. There are various wrinkles to consider around serialization etc, but I still think it would be nice. I'd rather have automatically implemented readonly properties first though... |
||||||||||||
|
|
|
You CAN do this, by using a closure over a local in the constructor (or other initialisation function). But it requires significantly more work that the helper class approach.
I suspect that the underlying field type |
||||
|
|
|
There is no such provisioning in C#. However I would name private variables differently (e.g. m_something or just _something) so it is easier to spot it when it is used. |
||
|
|
|
You can put all of your private fields into a nested class and expose them via public properties. Then within your class, you instantiate that nested class and use it. This way those private fields are not accessible as they would have been if they were part of your main class.
It just provides a level of obstruction. The underlying problem of accessing private backing fields is still there within the nested class. However, the code within class A can't access those private fields of nested class FieldForA. It has to go through the public properties. |
||
|
|
|
|
I don't know C# but in Java you may have a base class with only private instance variables and public setters and getters (should return a copy of the instance var.) and do all other in an inherited class. A "general design principle" would be "use inheritance". |
||||
|
|
|
Perhaps a property backing store, similar to the way WPF stores properties? So, you could have:
You can do all the pre-processing you want now, safe in the knowledge that if anyone did access the variable directly, it would have been really really hard compared to the property accessor. P.S. You may even be able to use the dependency property infrastructure from WPF... EDIT: In fact, if you change the value property stored to a property storage object (using the Command pattern for example), you could do your processing in the command object...just a thought. |
|||
|
|
|
|
C# has no language feature for this. However, you can rely on naming conventions, similar to languages which have no private properties at all. Prefix your more private variable names with |
||
|
|
|
|
There is no build in solution in C#, but I think your problem can be solved by good OO design: Each class should have a single purpose. So try to extract the logic around your field into a class as small as possible. This reduces the code where you can access the field by accident. If you do such errors by accident, your class is probably to big. Often interface are good to restrict access to only a certain "subset" of an object. If that's appropriate for your case depends on your setting of course. More details about the work to be done would help to provide a better answer. |
||
|
|
|
|
You say that you do additional processing. Presumably this would be detectable under the correct conditions. My solution, then, would be to create unit tests that implement conditions such that if the backing field is used directly the test will fail. Using these tests you should be able to ensure that your code correctly uses the property interface as long as the tests pass. This has the benefit that you don't need to compromise your design. You get the safety of the unit tests to ensure that you don't accidently make breaking changes and you capture the understanding of how the class works so that others who come along later can read your tests as "documentation." |
||
|
|
|
Wrap it in a class? The property thing is a bit like that anyway, associating data with methods - the "Encapsulation" they used to rave about...
I'm sure I'm missing something? It seems too normal... BTW I do like the closures one, superbly mad. |
||
|
|
|
|
Can’t do this in standard C#, however you could
Do we need a set of standard custom rules/attributes to enforce common design patens like this without the need to extend C# |
||
|
|
|
|
As a design practice, you could use a naming convention for "private properties" that's different from normal public members - for instance, using |
||
|
|
|
|
If you're using the C# 3.0 compiler you can define properties which have compiler-generated backing fields like this:
That will mean there is only one way to access the property, sure it doesn't mean you can only access the field but it does mean that there's nothing but the property to access. |
||||
|
|
|
I agree with the general rule that the class should trust itself (and by inference anybody coding within the class).
It is a shame that the field is exposed via intellisense.
If you really do wish to solve this aspect of it the the following class may be useful and makes the intent clear as well.
Allowing you to (somewhat verbosely) use it like so:
alternatively you can go for a less verbose option but accessing Flibble is by the not idiomatic
|
||||
|
|
|
The new Lazy class in .net 4.0
In my experience this is the most common reason I wish to wrap a field in a private properly, so solves a common case nicely. (If you are not using .Net 4 yet you can just create your own “Lazy” class with the same API as the .Net 4 version.) See this and this and this for details of using the Lazy class. |
||
|
|
|
|
Use the "veryprivate" construct type Example:
|
||
|
|
