- 博客(6)
- 收藏
- 关注
转载 Linux 下编译、安装、配置 QT
参考: http://www.cnblogs.com/emouse/archive/2013/01/28/2880142.html
2013-09-01 16:07:24 419
转载 C++中的exit()和atexit()函数
转自:http://blog.sina.com.cn/s/blog_5cec5bad0100b0x2.html一、exit()函数函数声明:void exit(int state);exit()函数用于在程序运行的过程中随时结束程序,exit的参数state是返回给操作系统,返回0表示程序正常结束,非0表示程序非正常结束。main函数结束时也会隐式地调用exit函数。exi
2013-09-01 16:03:01 788
原创 VC中调用外部程序方法: CreateProcess
有时候在程序中需要调用外部程序,这时候可以用到Win32 API中的CreateProcess函数。CreateProcess的具体用法可以看看这篇文章http://blog.163.com/laowu_000/blog/static/47198890201042021747662/另外,codeproject上有使用的代码: http://www.codeproject.com/Tips
2013-09-01 15:48:52 1016
原创 error C2275 illegal use of this type as an expression 解决方法
在VC中编译xxx.c文件出现错误error C2275 illegal use of this type as an expression 问题在于C99之前要求所有的声明必须放在函数块的起始部分,这也是C和C++的重要区别。方法: 1). 修改成xxx.cpp 。 2). 把声明放在函数起始部分。参考:http://stackoverflow.com/que
2013-09-01 15:40:30 21323
原创 Windows和Linux下定时器小结
Windows:在Windows中使用SetTimer()和KillTimer()来实现定时器。SetTimer有两个函数,一个是全局的函数::SetTimer(), 另外在MFC环境下CWnd中也有定义SetTimer()。具体用法,参考:http://msdn.microsoft.com/en-us/library/ee503157(v=winembedded.60).aspx
2013-09-01 15:22:18 1089
原创 Windows和Linux下的Sleep()函数小结
最近工作中完成了一个程序从Linux到Windows的porting工作,在这把碰到的问题总结下。VC: void Sleep(DWORD dwMillseconds) 单位是毫秒Linux: unsigned int sleep(unsigned int seconds) 单位是秒int usleep(unsigned long usec) 单位是微妙
2013-09-01 14:53:05 815
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人