上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 128 下一页
摘要: 1、 auto it = arr.begin(); it++; int index = it - arr.begin(); 阅读全文
posted @ 2022-01-28 16:00 朱小勇 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 1、空类的sizeof等于1 2、当一个类有虚函数的时候,会为其分配一个虚函数指针,大小为4 阅读全文
posted @ 2022-01-16 13:35 朱小勇 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1、代码 Item { focus: true Keys.onPressed: { console.log(event.key) switch(event.key) { case Qt.Key_U: break; case Qt.Key_M: Qt.quit(); break; } } } 必须设置 阅读全文
posted @ 2022-01-14 14:30 朱小勇 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1、问题描述 在QML中调用Qt.quit()但是程序没有退出 Keys.onPressed: { switch(event.key) { case Qt.Key_M: Qt.quit(); break; } } 2、解决 //main.cpp QApplication app(argc, argv 阅读全文
posted @ 2022-01-14 14:28 朱小勇 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1、QVariant转指针 QVariant a; //do something QObject* b = (QObject*)a.value<QObject*>(); 2、QVariant转其他非内建数据 QVariant a; //do something T b = (T)a.value<T> 阅读全文
posted @ 2022-01-13 17:18 朱小勇 阅读(609) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/judes/p/10736275.html https://www.cnblogs.com/judes/p/10498959.html https://www.cnblogs.com/judes/p/13753516.html 1、删除指定序号的内容 阅读全文
posted @ 2022-01-13 09:54 朱小勇 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 1、函数原型 当设置为true时,QObject对象[子类]不会发出信号 2、使用 在动态为QComboBox动态添加item的时候,它会发出xxxChanged信号,但是初始情况下我们不希望其发出,待初始化完成后再发出。 则可以: ①、先设置blockSignals(true); ②、动态添加it 阅读全文
posted @ 2022-01-09 22:24 朱小勇 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 多才多艺的const,修饰指针的的功能非常难辨认,总结出一个方法:用类似于函数的方式记忆。 1、const修饰函数【这种形式非常好识别】 const int* getData(); //返回值为常量[指向的对象] int getData() const; //函数本身为“常量”[函数不能修改类属性] 阅读全文
posted @ 2022-01-08 23:28 朱小勇 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1、代码 var x = 12; console.assert(x==12, "this will pass") console.assert(x>12, "this will fail") 第一个参数放我们希望成立的表达式,如果运行时不成立则打印这个异常,系统会将调用堆栈也打印出来。【QML中使用 阅读全文
posted @ 2022-01-06 18:34 朱小勇 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 1、代码 QString a = "123"; const char * a = a.toStdString().c_str(); 阅读全文
posted @ 2022-01-06 11:15 朱小勇 阅读(226) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 128 下一页