=============================================================
標題:偶然發現wince系統下mfc的一個bug
摘要:
備忘:VC2005 + wince5.0
日期:2010.7.31
姓名:朱銘雷
=============================================================
今天偶然發現微軟wince系統下mfc的一個bug,微軟的網站上也有記錄,如下:
BUG: Memory leaks when you use the CWnd class versions of the GetDC method and the ReleaseDC method
When you run code that calls the CWnd::GetDC function followed by the CWnd::ReleaseDC function, a memory leak of 4 bytes occurs. The cause of this bug is currently unknown. To avoid this problem, do not use the CWnd class versions of the GetDC method and the ReleaseDC method. Use the GetDC function and the ReleaseDC function. Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.
Steps to Reproduce the Behavior
In a method that is a part of a class that is derived from CWnd, insert the following code in your application:
CDC *pDC;<br /> RECT rect;</p><p> GetClientRect (&rect);</p><p> for (int i = 0; i < 1000; i++)<br /> {<br /> pDC = GetDC ();<br /> ReleaseDC (pDC);<br /> }<br />
If you run this code and then check the system memory before and after you run the code, you notice that the system memory leaks four bytes per iteration. If you change the code to the following code, the memory leak does not occur:
HDC hDC;
RECT rect;<br /> ::GetClientRect (m_hWnd, &rect);</p><p> for (int i = 0; i < 1000; i++)<br /> {<br /> hDC = ::GetDC (m_hWnd);<br /> ::DrawText (hDC, L"Testing...", 10, &rect, DT_CENTER);<br /> ::ReleaseDC (m_hWnd, hDC);<br /> }<br />