I have a windows form, and I have a class that checks a text file to make sure it has certain aspect. Now I have methods in a constructor and it seems a little weird. Should I just leave the constructor blank, and implement a start() type method and call that? So far my code looks like this

public class Seating
{
    private int segments = 0;
    public Seating()
    {
        checkInvoice();
        getSegmentCount();          
    }
}
link|improve this question

If you do initializations, it's common but seems to do validations either? – Jani Jan 5 '11 at 14:16
feedback

6 Answers

up vote 7 down vote accepted

I have methods in a constructor and it seems a little weird

Well, why else would a constructor exist? It’s entirely legitimate to have methods in a constructor, even methods that could fail (thus interrupting the object creation). It’s hard to say whether this is appropriate in your particular case.

In general it’s fine though.

link|improve this answer
okay perfect, I thought constructors were more for initializing variables, I suppose. – Spooks Jan 5 '11 at 14:16
1  
+1: Except for virtual methods as everyone else has stated. – Neil Knight Jan 5 '11 at 14:16
2  
@Lucero: I disagree. The best practice is to keep the constructor cleaning (not clean) up after itself if it deals with disposable resources. Of course the uncreated object must not leak resources but it’s entirely possible to prevent this in the constructor itself (and should absolutely be done!). A constructor should do all the work it meaningfully has to do to get the object in an initialized state. If that entails dealing with code that can throw exceptions, so be it. If the constructor leaves the object half initialized (as suggested by you) then it is broken. – Konrad Rudolph Jan 5 '11 at 14:21
1  
@Lucero: but notice that Herb’s article in particular doesn’t say that the consequence is to cripple constructors. He just says to beware of incorrect handing. The second and third links do not forward any argument either way, they just list the options (although the third link explicitly warns of the danger of partly constructed objects that you are advocating). All three articles are interesting reads but none supports your argument of crippling constructors (what you called “clean and lean”). – Konrad Rudolph Jan 5 '11 at 15:00
2  
@Lucero: to answer very briefly: yes. They are all badly designed. Setting up an object should be reserved for a builder instance. The point is that not all of this was known when the program was initially designed. We learn from our (and other peoples’) mistakes. – Konrad Rudolph Jan 6 '11 at 20:57
show 10 more comments
feedback

Virtual method calls in the constructor are no-go (with the tiny exception of sealed classes, which makes the method effectively non-virtual).

Non-virtual methods can be okay, but you should make sure that all members have been initialized before, and the non-virtual methods may not call any virtual member as well.

link|improve this answer
feedback

The general rule is have methods that are very trivial and unlikely to throw exceptions in constructor. If the methods might fail for any reason (file access or missing, DB issue, null reference ...), then it should not be in the constructor, as people should expect constructors not to fail (especially parameterless constructors, although the general guidance doesn't specify). People should not expect var seating = new Seating(); to be source of errors.

You can add Start() / Initialize() kind of methods as instance methods as you mentioned. You can also add a new static method that returns a new instance of the Class after calling the two methods you need on it and make the constructor private. You can go further and have this method in a new Factory class (making the constructor internal). You can think of other ways to do it also.

One thing is you may see any value calculated or retrieved in these methods a constructor parameter (and have no parameterless constructor), then the constructor will only assign those parameters to respective fields/properties. A factory method or service method in the same assembly or other "Services" dedicated assembly can be responsible for calling the methods, getting the parameters, passing them to the constructor, and returning a new instance of the class. This is my personal favorite.

Generally speaking this kinds of problems is a sign that the class is doing too much and you might want to split the functionality into other classes (existing or new). That's why the last solution is suggested, so that the two methods themselves might be in the other "Services" assembly, but as mentioned above, there are many other ways to do it if you want.

Update:

Here is Microsoft Guidelines for Constructors:
Constructor Usage Guidelines

Quoting from the page:

Minimize the amount of work done in the constructor. Constructors should not do more than capture the constructor parameter or parameters. This delays the cost of performing further operations until the user uses a specific feature of the instance.

link|improve this answer
1  
This is wrong. It might help if you gave reasons why you think that “People should not expect var seating = new Seating(); to be source of errors.” – in general, there is no reason why they should not. Introducing a Start method doesn’t make this any better (worse, in fact). Having an object in an improperly initialized state is an anti-pattern and although many older APIs do that, you should not. – Konrad Rudolph Jan 7 '11 at 13:57
1  
Why? Because it seems like just creating instance of class. Nothing special. No constructor parameter or anything that feels like it does something heavy. I did not recommend the Start method, I mentioned my suggestion is the last option. A constructor that takes parameters and a service method which calls the two methods, provides parameters to the constructor, and returns the new instance. Read it again. – Mohamed Meligy Jan 8 '11 at 4:27
See the "Update" part of the answer, about Microsoft's own guidelines for constructors. – Mohamed Meligy Jan 8 '11 at 4:30
feedback

There's nothing wrong with calling non-virtual methods in the constructor. By the time your constructor fires, your parent object has been fully constructed. However, you do not want to call any virtual methods, as they could be overridden by subclasses, which would execute code within them when they are not fully constructed.

link|improve this answer
feedback

Generally speaking, your constructor should only be setting up the state of the object. It is possible that could mean calling methods. I would say that running a very long methods is not a good idea. The user of your class wouldn't expect the constructor to be an expensive method.

I don't you didn't mention virtual methods, but you should NEVER call these in a constructor.

link|improve this answer
feedback

There are some useful design guidelines for constructor usage here:

Constructor Design (MSDN)

The text is lifted from:

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries

Which is a worthy purchase.

The one I got bitten by years ago was: "Do not call virtual members on an object inside its constructors."

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.