How I can use constructors in C# like this:

public Point2D(double x, double y)
{
    // ... Contracts ...

    X = x;
    Y = y;
}

public Point2D(Point2D point)
{
    if (point == null)
        ArgumentNullException("point");
    Contract.EndContractsBlock();

    this(point.X, point.Y);
}

I need it to not copy code from another constructor...

link|improve this question

47% accept rate
feedback

4 Answers

up vote 7 down vote accepted

You can factor out your common logic to a private method, for example called Initialize that gets called from both constructors.

Due to the fact that you want to perform argument validation you cannot resort to constructor chaining.

Example:

public Point2D(double x, double y)
{
    // Contracts

    Initialize(x, y);
}

public Point2D(Point2D point)
{
    if (point == null)
        throw new ArgumentNullException("point");

    // Contracts

    Initialize(point.X, point.Y);
}

private void Initialize(double x, double y)
{
    X = x;
    Y = y;
}
link|improve this answer
2  
As an avid fan of immutability, I'd like to note that a drawback of this method is that you cannot initialize readonly fields :( – R. Martinho Fernandes Apr 5 '11 at 17:28
feedback
public Point2D(Point2D point) : this(point.X, point.Y) { }
link|improve this answer
I want use Contracts & null-exception if point is null – Alex F. Sherman Apr 5 '11 at 17:15
1  
point cannot be null because it is not defined as a nullable type (Point2D? point) – PoweRoy Apr 5 '11 at 17:16
Describe what you mean by using Contracts. Mark's answer is right. – Dan Andrews Apr 5 '11 at 17:17
@PowerRoy, you are assuming Point2D is a value type. If it's a class it may be null. – GeReV Apr 5 '11 at 17:18
@PowerRoy: point can be null because... we don't know how it is defined. – R. Martinho Fernandes Apr 5 '11 at 17:19
show 1 more comment
feedback

Maybe your class isn't quite complete. Personally, I use a private init() function with all of my overloaded constructors.

class Point2D {

  double X, Y;

  public Point2D(double x, double y) {
    init(x, y);
  }

  public Point2D(Point2D point) {
    if (point == null)
      throw new ArgumentNullException("point");
    init(point.X, point.Y);
  }

  void init(double x, double y) {
    // ... Contracts ...
    X = x;
    Y = y;
  }
}
link|improve this answer
feedback

For more about C# Constructor Overloading check this URL : http://planetofcoders.com/c-constructor-overloading/

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.