Possible Duplicate:
c++ call constructor from constructor
How to do "self" (this) assignments in c++?
Java:
public Point(Point p) {
this(p.x, p.y);
}
How would do this in C++?
Would it be similar only this->(constructor of point that takes x, constructor of point that takes y);
?