赞
踩
实际遇到:
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
==========================================
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_OBJECTpublic:
explicit Widget(QWidget *parent = 0);
~Widget();//....
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。