11 2021 档案

摘要:template<typename T> class blob { public: blob(); blob(const T &j):i(j){} static void showText(){qDebug()<<"text";} }; int main() { blob::showText(); 阅读全文
posted @ 2021-11-25 14:23 补码 阅读(447) 评论(0) 推荐(0)
摘要:修改CMakeLists.txt文件后,删掉之前构建的项目文件,再次执行CMake,错误解决。 阅读全文
posted @ 2021-11-18 18:51 补码 阅读(5738) 评论(1) 推荐(0)
摘要:argc:表示argv数组中字符串的数量 argv:char类型数组,保存可执行文件位置(window后缀为exe) 阅读全文
posted @ 2021-11-16 16:06 补码 阅读(624) 评论(0) 推荐(0)