摘要:
闲来无聊,用类的模板封装的链表,记录下来,说不定哪天用得上那。template class List{public://定义节点类型typedef struct Node{VALUE_TYPE data; //数据域struct Node *next; //指... 阅读全文
摘要:
QString qstr;string str;//将QString转化为C++的stringstr = qstr.toStdString();//将C++的string转化为QStringqstr = QString::fromStdString(str); ... 阅读全文
摘要:
1、模态对话框(1)要想使一个对话框成为模态对话框,只需要条用它的exec()函数。QDialog dialog(this);dialog.exec();(2)show()函数建立模态对话框,调用函数setModal(true)函数即可。QDialog *dialog... 阅读全文