
qt
文章平均质量分 75
liyjw
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
win7环境下vs2010编译qt源码
我用vs2010编译qt4.8.0源码时,会有错误遇到问题:Perl not found in environment - cannot run syncqt.解决方法:You can either go to into the Qt folder and look for a directory called bin and delete these two files:sy原创 2013-06-19 16:49:30 · 1096 阅读 · 0 评论 -
vs2010不能debug调试
Debugging information *.exe cannot be found or does not match To enable debugging: 1) Goto Project->HelloWorld Properties 2) On the left expand "Configuration Properties" 3) Expand "C/C++"原创 2013-09-27 15:09:09 · 3071 阅读 · 0 评论 -
fread()和fwrite()函数读写文件操作
[cpp] view plaincopyprint?#include int main() { FILE* pFile; float buffer[] = { 2.0 , 3.0 , 8.0 }; pFile = fopen("myfile.bin" , "wb"); // 打开文件写操作 fwrite(buffer , 1 ,转载 2013-10-22 09:02:17 · 19527 阅读 · 0 评论