摘要: 1 void ProjectTree::init() 2 { 3 //显示本地的目录结构 4 QString _logDir = "E:/code/Qtcode/ProjectTreeSolutionDir"; 5 QFileSystemModel *_fileModel = new QFileSy 阅读全文
posted @ 2020-09-01 15:46 Catmiyc 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 类对象实例化时候出现 does not name a type 类的互相引用 https://blog.csdn.net/yamanda/article/details/85175801 阅读全文
posted @ 2020-09-01 11:23 Catmiyc 阅读(441) 评论(0) 推荐(0) 编辑
摘要: github使用流程图 阅读全文
posted @ 2018-12-13 09:24 Catmiyc 阅读(117) 评论(0) 推荐(0) 编辑
摘要: error assertion的错误 之前缺少第二个if 的判断导致 摄像头没有读取数据 而自动写空的图像数据造成报错 阅读全文
posted @ 2018-08-21 09:54 Catmiyc 阅读(87) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/xingjiarong/article/details/47656339 阅读全文
posted @ 2018-07-25 15:39 Catmiyc 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> extern int a,b;extern int c;extern float f; int main(){ int a,b; int c; float f; a=10; b=20; c=a+b; printf("value of c:%d \n"); f=70 阅读全文
posted @ 2018-07-25 15:12 Catmiyc 阅读(73) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main(){ /* My first C program */ printf("Hello,world!" \n); return 0; } /tmp/585389670/main.c:6:24: error: expected ')' printf(" 阅读全文
posted @ 2018-07-25 15:11 Catmiyc 阅读(224) 评论(0) 推荐(0) 编辑