07 2022 档案

摘要:class 类名 { public: 类名() { // 在此实现默认构造函数(初始化资源,例如 new XXX) } ~类名() { // 在此实现析构函数(释放资源,例如 delete XXX) } 类名(类名 const &other) { // 在此实现拷贝构造函数,确保实现深拷贝 } vo 阅读全文
posted @ 2022-07-14 16:41 BinarySong 阅读(60) 评论(0) 推荐(0)
摘要:检查StyleSheet,是否指定了padding。 检查Layout是否有margin和spacing。 阅读全文
posted @ 2022-07-12 16:23 BinarySong 阅读(359) 评论(0) 推荐(0)
摘要:问题:ui_xxx.h 找不到“提升为”引用的头文件 解决:尝试将“全局包含”取消 阅读全文
posted @ 2022-07-07 10:14 BinarySong 阅读(460) 评论(0) 推荐(0)