第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在這種情況下我應(yīng)該在 CreateDC 之后使用 DeleteDC

在這種情況下我應(yīng)該在 CreateDC 之后使用 DeleteDC

C#
精慕HU 2023-09-24 10:39:20
我有以下代碼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è)您需要這樣做,除非另有說明。


查看完整回答
反對 回復(fù) 2023-09-24
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號