没有合适的默认构造函数可用,怎么破?

自定义的类,就容易搞出这个错误来。下面是我自定义的类

class  Point2D
{
private:
	double x, y;
public:
	Point2D(){}
	Point2D(double x1, double y1)     // Point2D构造函数
	{
		x = x1;
		y = y1;
	}

	double X(){ return x; }
	double Y(){ return y; }

	void setx(double x_)  { x = x_; }
	void sety(double y_)  { y = y_; }
};

    Point2D(){}这一行看着没啥用,但是必不可少。没这一行,有时候就会提示:没有合适的默认构造函数可用。

你可能感兴趣的:(qt)