我有以下代碼public static class GammaRamp{ [DllImport("gdi32.dll")] private unsafe static extern bool SetDeviceGammaRamp(Int32 hdc, ushort* ramp); [DllImport("gdi32.dll")] public static extern IntPtr CreateDC(string lpszDriver, string lpszDevice, string lpszOutput, IntPtr lpInitData); private static Int32 hdc; //some other things public static unsafe void SetGammaRamp(int aBrightness, int aTemperature) { //...some other things calculating rgbArray but not important for the question foreach (System.Windows.Forms.Screen screen in System.Windows.Forms.Screen.AllScreens) { //Get the hardware device context of the screen hdc = CreateDC(screen.DeviceName, null, null, IntPtr.Zero).ToInt32(); SetDeviceGammaRamp(hdc, rgbArray); } }}將 CreateDC 結(jié)果轉(zhuǎn)換為 ToInt32 而不是保留 IntPtr 然后調(diào)用 DeleteDC 是一個(gè)好習(xí)慣嗎?我應(yīng)該在 CreateDC 之后使用 DeleteDC 方法,但這是否一定在我的代碼中?我希望這段代碼不會(huì)出現(xiàn)某種內(nèi)存問題。
1 回答

呼如林
TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超3個(gè)贊
是的,當(dāng)不再需要時(shí),始終調(diào)用DeleteDC()
您創(chuàng)建的任何設(shè)備上下文,并調(diào)用您通過或獲取的任何設(shè)備上下文。CreateDC()
ReleaseDC()
GetDC()
GetWindowDC()
我想不出您不負(fù)責(zé)銷毀您創(chuàng)建的 DC 的常見情況 - 通常,假設(shè)您需要這樣做,除非另有說明。
- 1 回答
- 0 關(guān)注
- 132 瀏覽
添加回答
舉報(bào)
0/150
提交
取消