摘要: 1. 求最大值 const T &qMax(const T &a, const T &b) 2. 求最小值 const T &qMin(const T &a, const T &b) 3.求中间值 const T &qBound(const T &v1, const T &v2, const T & 阅读全文
posted @ 2020-09-05 01:04 朱小勇 阅读(462) 评论(0) 推荐(0) 编辑
摘要: int result; std::cout << typeid(result).name(); 打印:int 阅读全文
posted @ 2020-09-05 00:58 朱小勇 阅读(5280) 评论(0) 推荐(3) 编辑
摘要: struct { unsigned char x1 : 2; unsigned char x2 : 2; unsigned char x3 : 2; unsigned char x4 : 2; } Bunch; /* sizeof(Bunch) => 1 */ struct { unsigned c 阅读全文
posted @ 2020-09-05 00:42 朱小勇 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Q_FOREVER { qDebug() << "..."; } 阅读全文
posted @ 2020-09-05 00:35 朱小勇 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 在.pro里: build_type = CONFIG(debug, debug|release) { build_type = debug } else { build_type = release } DESTDIR = $$build_type/out OBJECTS_DIR = $$buil 阅读全文
posted @ 2020-09-05 00:31 朱小勇 阅读(232) 评论(0) 推荐(0) 编辑
摘要: QtObject { Component.onCompleted: console.log("Completed")//构造函数 Component.onDestruction: console.log("Destruction")//析构函数 } 阅读全文
posted @ 2020-09-05 00:00 朱小勇 阅读(1130) 评论(0) 推荐(0) 编辑