QT 常见错误汇总

进步在于总结,点滴积累从今日开始。


1. 定义一个结构体出现 Error “field  visibility has incomplete type”的错误。

class PointXYZ
{
  public:

     PointXYZ();
     PointXYZ(const PointXYZ&pt);
     PointXYZ(float x, float y, float z);

     float x;
     float y;
     float z;
     bool isProcessed;

     PointXYZ & operator =(const PointXYZ & pt)
     {
        this->x = pt.x;
        this->y = pt.y;
        this->z = pt.z;

        return *this;
     }

     QSet<int> visibility;

};
解决方法,添加头文件 #inlude<QSet>, 其它数据类型的错误解决方法应该类似。


你可能感兴趣的:(QT 常见错误汇总)