我是靠谱客的博主 柔弱方盒,最近开发中收集的这篇文章主要介绍《Qt中报错error: allocation of incomplete type ‘Ui::‘》,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
来自:http://www.cryfeifei.cn/246.html
张小飞 发布了一篇文章
《Qt中报错error: allocation of incomplete type ‘Ui::‘》
3月前 • Qt, Qt技巧 • allocation of incomplete type, Ui:: • 957 • 0
每次在Qt中单独添加UI文件的时候,都会遇到这个问题。需要注意这么几点
切记要与类名保持一致
举个栗子我的类名叫
CMainWidget
那我的文件名就叫
cmainwidget.h
cmainwidget.cpp
那需要在cmainwidget.h头文件中添加
namespace Ui {
class cmainwidget;
}
在cmainwidget.cpp添加
#include "ui_cmainwidget.h"
添加私有成员变量
private:
Ui::cmainwidget* ui;
初始化成员变量
ui(new Ui::cmainwidget)
构造函数中
ui->setupUi(this);
最后一条,别忘了把cmainwidget.ui中的widget名字改成cmainwidget,这个最重要!
最后
以上就是柔弱方盒为你收集整理的《Qt中报错error: allocation of incomplete type ‘Ui::‘》的全部内容,希望文章能够帮你解决《Qt中报错error: allocation of incomplete type ‘Ui::‘》所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复