我有一个简单的gui,它有一个文本字段,一个下拉菜单和一个go按钮。我可以指定我正在寻找的部件的名称和类,并通过将“go”按钮连接到运行我已经完成的功能的插槽来调用函数。
然而,当插槽功能完成所有内容时,它会调用xstring
中的一个函数,即删除一些大量的xstring
。它涉及到这个功能:
void _Tidy(bool _Built = false,
size_type _Newsize = 0)
{ // initialize buffer, deallocating any storage
if (!_Built)
;
else if (this->_BUF_SIZE <= this->_Myres)
{ // copy any leftovers to small buffer and deallocate
pointer _Ptr = this->_Bx._Ptr;
this->_Getal().destroy(&this->_Bx._Ptr);
if (0 < _Newsize)
_Traits::copy(this->_Bx._Buf,
_STD addressof(*_Ptr), _Newsize);
this->_Getal().deallocate(_Ptr, this->_Myres + 1);
}
this->_Myres = this->_BUF_SIZE - 1;
_Eos(_Newsize);
}
我的程序在this->_Getal().deallocate(_Ptr, this->_Myres + 1);
执行休息。
这是gui的代码:
#include <QtGui>
#include <QApplication>
#include <QComboBox>
#include "gui.h"
#include <vector>
std::vector<std::string> PartClasses;
gui::gui(QWidget *parent) : QDialog(parent){
getPartClasses(PartClasses); //my own function, does not affect how the gui runs, just puts strings in PartClasses
label1 = new QLabel(tr("Insert Name (Optional):"));
label2 = new QLabel(tr("Class Name (Required):"));
lineEdit = new QLineEdit;
goButton = new QPushButton(tr("&Go"));
goButton->setDefault(true);
connect(goButton, SIGNAL(clicked()), this, SLOT(on_go_clicked()));
cb = new QComboBox();
for(int i = 0; i < PartClasses.size(); i++)
cb->addItem(QString::fromStdString(PartClasses[i]));
//*add widgets to layouts, removed for space*
setWindowTitle(tr("TEST"));
setFixedHeight(sizeHint().height());
}
void gui::on_go_clicked(){
std::string str(cb->currentText().toStdString());
updateDB(str, lineEdit->text().toUtf8().constData()); //my function, does not affect the gui.
QApplication::exit();
}
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
gui *stuff = new gui;
stuff->show();
return app.exec();
}
它在做什么?当我完成插槽时,gui不应该重新启动,以便我可以指定一个新对象吗?我怎样才能让它不删除这个对象,或者让它成功?
答案 0 :(得分:0)
以下是我对正在发生的事情的最佳猜测:
您正在访问的对象将被删除到不应该删除的位置。
_Tidy
函数看起来像是在字符串操作后进行一些清理。有可能是char *
没有记下来的常数,你正在删除一个常量指针。
要解决此问题,我会对您的变量进行深层复制,并将其传递到执行updateDB
LaTex内容的xstring
。或者你可以在那里创建一个xstring对象并将其传递下来。
我还会考虑使用strcpy
或类似的东西,或者只考虑std::string
。
此外,出现的崩溃代码也很有帮助。
编辑:
以下是您的代码应该是什么样的......
void gui::on_go_clicked(){
std::string str(cb->currentText().toStdString());
std::string line_edit_str(lineEdit->text().toUtf8().constData());
updateDB(str, line_edit_str); //my function, does not affect the gui.
QApplication::exit();
}
希望有所帮助。