有关Qt析构异常的问题
在widget.h文件中声明成员变量
QVBoxLayout m_VMainLayout;
QHBoxLayout m_HChildLayout[2];
QVBoxLayout m_VChildLayout;
在widget.cpp中
①m_VMainLayout.addLayout(&m_VChildLayout);
②m_VMainLayout.addLayout(&m_HChildLayout);
③m_VChildLayout.addLayout(&m_HChildLayout[0]);
④m_HChildLayout.addLayout(&m_VChildLayout[1]);
运行①③,②④会出现析构异常。
不知道原因,先记录,以免踩坑。