上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
  2013年10月30日
摘要: 转自:http://blog.csdn.net/zskof/article/details/3475182 注:C++有着与C不同的名称修饰,主要是为了解决重载(overload);调用约定则影响函数参数的入栈顺序和清栈主体;而名称修饰也因调用约定而不同。 调用函数的主体和被调用函数的主体,可能会有不同的调用约定和名称修饰,两者的不匹配会引发问题。 使用C/C++语言开发软件的程序员... 阅读全文
posted @ 2013-10-30 20:09 qinfengxiaoyue 阅读(1082) 评论(0) 推荐(0) 编辑
  2013年10月29日
摘要: #include#include #include#include#include#include#include #include using namespace std;#define NUM1 10 //外层循环10次#define NUM2 100000000 //对于int、dword的1亿次i++和++i#define NUM3 100000//对与包含10万个元素容器的iter++... 阅读全文
posted @ 2013-10-29 19:53 qinfengxiaoyue 阅读(1363) 评论(0) 推荐(0) 编辑
  2013年10月23日
摘要: 注:转自http://blog.csdn.net/FreeWave/article/details/2056469?reload。 清晰地讲解了Windows线程的消息队列和GetMessage内幕。好文。 也许题目有些夸张,但是Windows消息方面确实存在一些不去探究就摸不着头脑的事情,这种问题不是明显错误,不会抛出异常,但却是最棘手的问题,给调试带来很大麻... 阅读全文
posted @ 2013-10-23 00:10 qinfengxiaoyue 阅读(5064) 评论(0) 推荐(0) 编辑
  2013年10月22日
摘要: 关键字:WindowsSDK 消息机制 http://www.codeproject.com/Articles/599/Windows-Message-Handling-Part-3 Handling Messages in SDK applications Windows Classes and Window Procedures DefWindowProc Sending Messa... 阅读全文
posted @ 2013-10-22 23:32 qinfengxiaoyue 阅读(391) 评论(0) 推荐(0) 编辑
  2013年10月20日
摘要: //-Registering window class.//-Creating window.//-Creating message loop.//-Implement WndProc function that handles incoming messages.#include LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;int... 阅读全文
posted @ 2013-10-20 22:52 qinfengxiaoyue 阅读(340) 评论(0) 推荐(0) 编辑
  2013年6月5日
摘要: Potential Errors Passing CRT Objects Across DLL Boundaries:http://msdn.microsoft.com/en-us/library/ms235460.aspx 阅读全文
posted @ 2013-06-05 21:55 qinfengxiaoyue 阅读(565) 评论(0) 推荐(0) 编辑
  2013年5月20日
摘要: 打开/创建一个HANDLE而忘记close的情况时有发生。利用RAII的思想,将HANDLE封装为一个类,在其析构函数中进行close,是一个不错 的方法。 ATL提供了一个CHandle类,但是提出了以下使用注意事项: Some API functions will use NULL as an empty or invalid handle, while others use INVAL... 阅读全文
posted @ 2013-05-20 16:15 qinfengxiaoyue 阅读(15623) 评论(0) 推荐(0) 编辑
  2013年5月18日
摘要: 1. 本来,MSDN已经明确指出了: You can call _endthread or _endthreadex explicitly to terminate a thread; however, _endthread or _endthreadex is called automatically when the thread returns from the routine pas... 阅读全文
posted @ 2013-05-18 01:09 qinfengxiaoyue 阅读(2300) 评论(0) 推荐(0) 编辑
摘要: 节选:http://stackoverflow.com/questions/2331316/what-is-stack-unwinding 1. Stack unwinding is usually talked about in connection with exception handling. Here's an example: void func( int x ){ char... 阅读全文
posted @ 2013-05-18 00:35 qinfengxiaoyue 阅读(849) 评论(0) 推荐(0) 编辑
摘要: 关键字:C++资源管理异常处理 RAII Stack-Unwinding(栈辗转开解)http://blog.csdn.net/daheiantian/article/details/6530318 阅读全文
posted @ 2013-05-18 00:07 qinfengxiaoyue 阅读(165) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页