This is a mirror of official site: http://jasper-net.blogspot.com/

C#/.NET Little Wonders – Cross Calling Constructors

| Sunday, December 19, 2010
This is another little tidbit that I love using, and it should be fairly common knowledge, yet I’ve noticed many times that less experienced developers tend to have redundant constructor code when they overload their constructors.

The Problem – repetitive code is less maintainable

Let’s say you were designing a messaging system, and so you want to create a class to represent the properties for a Receiver, so perhaps you design a ReceiverProperties class to represent this collection of properties.

Perhaps, you decide to make ReceiverProperties immutable, and so you have several constructors that you can use for alternative construction:

Note: keep in mind this is just a simple example for illustration, and in same cases default parameters can also help clean this up, but they have issues of their own.

While strictly speaking, there is nothing wrong with this code, logically, it suffers from maintainability flaws.  Consider what happens if you add a new property to the class?  You have to remember to guarantee that it is set appropriately in every constructor call.

This can cause subtle bugs and becomes even uglier when the constructors do more complex logic, error handling, or there are numerous potential overloads (especially if you can’t easily see them all on one screen’s height).

The Solution – cross-calling constructors

I’d wager nearly everyone knows how to call your base class’s constructor, but you can also cross-call to one of the constructors in the same class by using the this keyword in the same way you use base to call a base constructor.


Read more: James Michael Hare

Posted via email from .NET Info

0 comments: