12 2016 档案

摘要:借用《微电子学与计算机》模板, 只用作学习 阅读全文
posted @ 2016-12-24 17:02 mCat 阅读(146) 评论(0) 推荐(0)
摘要://delete.h #ifndef DELEGATE_H #define DELEGATE_H #include #include #include #include #include #include class Delegate : public QItemDelegate { Q_OBJECT public: explicit Delegate(QObject *pa... 阅读全文
posted @ 2016-12-19 17:10 mCat 阅读(742) 评论(0) 推荐(0)
摘要:#include "dialog.h" #include "ui_dialog.h" Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { ui->setupUi(this); QString sPath = "E:/"; dirmodel = new QFi... 阅读全文
posted @ 2016-12-19 15:33 mCat 阅读(421) 评论(0) 推荐(0)
摘要:#include "dialog.h" #include "ui_dialog.h" #include Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { ui->setupUi(this); model = new QDirModel(this); mod... 阅读全文
posted @ 2016-12-19 15:11 mCat 阅读(356) 评论(0) 推荐(0)
摘要:#include "dialog.h" #include "ui_dialog.h" #include Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { ui->setupUi(this); model = new QStringListModel(this); ... 阅读全文
posted @ 2016-12-19 11:16 mCat 阅读(174) 评论(0) 推荐(0)
摘要:qSort() qCopy() qFill() qFind() 阅读全文
posted @ 2016-12-19 10:59 mCat 阅读(416) 评论(0) 推荐(0)
摘要:#include #include #include int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); QStringList List; QString Line = "a, b, c, d, f, g"; //List.append("Hello"); List =... 阅读全文
posted @ 2016-12-17 18:53 mCat 阅读(307) 评论(0) 推荐(0)
摘要:#include #include #include int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); QHash Employees; Employees.insert(1,"Bob"); Employees.insert(2,"Cat"); Employees.in... 阅读全文
posted @ 2016-12-17 18:45 mCat 阅读(735) 评论(0) 推荐(1)
摘要:#include #include #include int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); QMap Employees; Employees.insert(1,"Bob"); Employees.insert(2,"Cat"); Employees.ins... 阅读全文
posted @ 2016-12-17 18:41 mCat 阅读(452) 评论(0) 推荐(0)
摘要:#include #include #include int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); QList List; for(int i = 0; i Iter(List); while(Iter.hasNext()) { int i =... 阅读全文
posted @ 2016-12-17 18:40 mCat 阅读(475) 评论(0) 推荐(0)
摘要:#ifndef MYTHREAD_H #define MYTHREAD_H #include class MyThread : public QThread { Q_OBJECT public: explicit MyThread(QObject *parent = 0); void run(); bool Stop; signals: void... 阅读全文
posted @ 2016-12-15 15:21 mCat 阅读(240) 评论(0) 推荐(0)
摘要:#include "dialog.h" #include "ui_dialog.h" #include Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { ui->setupUi(this); } Dialog::~Dialog() { delete ui; } v... 阅读全文
posted @ 2016-12-14 19:17 mCat 阅读(397) 评论(0) 推荐(0)
摘要:软件工程管理的提出和研究源于上世纪70年代中期,美国国防部在那时曾经专门针对软件工程的不理想进行过研究,其中大约70%是由于管理不善所引起的,大家认为的技术因素并不是主要原因。他们从中得出一个结论,影响软件研发项目全局的因素是软件工程项目的管理,而技术等相关因素只是起到一些局部作用。到了上世纪90年 阅读全文
posted @ 2016-12-14 15:28 mCat 阅读(195) 评论(0) 推荐(0)
摘要:一、计算机视觉 Divid Marr将计算机视觉系统的开发问题归纳为3个要素: (1)数学理论 考虑数学计算层面的目标及可以引入的合理约束条件。 (2)描述和算法 重点解决计算机视觉中的输入输出的数据格式问题,并设计合理的算法实现其系统功能。 (3)硬件的合理使用 使用符合算法要求的硬件并考虑该硬件 阅读全文
posted @ 2016-12-13 16:08 mCat 阅读(10359) 评论(0) 推荐(0)
摘要:1. RTTL 运行时类别识别,在只有一个指向基类的指针或引用时确定一个对象的准确类型。 2.什么是拷贝构造函数 是单个形参的构造函数,实参是与该类同属一类的对象;在类定义中,如果未提供自己的拷贝构造函数,C++提供一个默认拷贝构造函数,该默认拷贝构造函数完成一个成员到另一个成员的拷贝。 3. 什么 阅读全文
posted @ 2016-12-13 11:12 mCat 阅读(228) 评论(0) 推荐(0)
摘要:Self-made millionaire Steve Siebold spent 26 years interviewing some of the wealthiest people in the world before condensing his findings in his book  阅读全文
posted @ 2016-12-11 19:11 mCat 阅读(211) 评论(0) 推荐(0)
摘要:#include "dialog.h" #include "ui_dialog.h" #include #include Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog) { ui->setupUi(this); ui->treeWidget->setColumnCount... 阅读全文
posted @ 2016-12-09 21:12 mCat 阅读(108) 评论(0) 推荐(0)
摘要:#include #include #include using namespace std; void showStr(const char * str, int & n) { cout 0) { showStr(str, --n); } } int test8_1() { char str[] = "hello cat"; int n = 2; showStr(st... 阅读全文
posted @ 2016-12-03 21:03 mCat 阅读(183) 评论(0) 推荐(0)