当前位置:   article > 正文

QT: error: invalid use of incomplete type ‘class Ui::Widget‘ , ui(new Ui::Widget) 错误处理办法 -1_invalid use of incomplete type class ui

invalid use of incomplete type class ui

实际遇到:

QT: error: invalid use of incomplete type 'class Ui::Widget' , ui(new Ui::Widget) 错误处理办法

参考:

Qt5.7中编译报错:“invalid use of incomplete type 'class Ui::xxx'ui(new Ui::xxx)”的解决方法  https://blog.csdn.net/Green_Hand_in_IT/article/details/80516599

invalid use of incomplete type class ui(new Ui::MainWindow)报错,解决方案  https://blog.csdn.net/qq_53873381/article/details/129971073

** [Error] invalid use of incomplete type 使用了未定义的类型  https://blog.csdn.net/weixin_62264287/article/details/125246807 
因为这两个类是相互勾结了,所以其中一个类在使用另一个类进行对象实例化的时候,另一个类也会去找这个类对象实例化,而它们都还没有定义,简单来说就是,我需要你帮我做一件事A,但是你为了做事A需要我做事B,而我做事B必须建立在你帮我做事A的前提下。

关联参考:

QT: error: invalid use of incomplete type ‘class Ui::Widget‘ , ui(new Ui::Widget) 错误处理办法 -2
https://blog.csdn.net/ken2232/article/details/129771629

QT: error: invalid use of incomplete type ‘class Ui::Widget‘ , ui(new Ui::Widget) 错误处理办法 -1
https://blog.csdn.net/ken2232/article/details/135581921

==========================================

 

QT: error: invalid use of incomplete type 'class Ui::Widget' , ui(new Ui::Widget) 错误处理办法  << 实际遇到

  https://www.cnblogs.com/asuser/articles/13019936.html

错误 1:

在QT中更改QWidget的对象名称后,

对应的源代码中类的名称变为:

转到对应的widget.cpp添加部分代码后报错如下:

将对象名称修改为提示的Widget后重新再编译,错误消除。

错误 2:没有包含 #include <QWidget>  时,如下:也会出现同样错误提示。

namespace Ui {
class Widget;
}

class Widget : public QWidget
{
    Q_OBJECT

public:
    explicit Widget(QWidget *parent = 0);
    ~Widget();

//....

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/121174
推荐阅读
相关标签
  

闽ICP备14008679号