CComAutoCriticalSection 類別
CComAutoCriticalSection
提供方法來取得和釋放重要區段對象的擁有權。
語法
class CComAutoCriticalSection : public CComCriticalSection
成員
公用建構函式
名稱 | 描述 |
---|---|
CComAutoCriticalSection::CComAutoCriticalSection | 建構函式。 |
CComAutoCriticalSection::~CComAutoCriticalSection | 解構函式。 |
備註
CComAutoCriticalSection
類似於 CComCriticalSection 類別,不同之處在於CComAutoCriticalSection
會自動初始化建構函式中的重要區段物件。
一般而言,您會透過typedef
名稱 AutoCriticalSection 來使用CComAutoCriticalSection
。 此名稱會在使用 CComMultiThreadModel 時參考CComAutoCriticalSection
。
Init
使用這個類別時,無法使用 CComCriticalSection 的 和 Term
方法。
繼承階層架構
CComAutoCriticalSection
需求
標頭: atlcore.h
CComAutoCriticalSection::CComAutoCriticalSection
建構函式。
CComAutoCriticalSection();
備註
呼叫 Win32 函式 InitializeCriticalSection,以初始化重要區段物件。
CComAutoCriticalSection::~CComAutoCriticalSection
解構函式。
~CComAutoCriticalSection() throw();
備註
解構函式會呼叫 DeleteCriticalSection,它會釋放重要區段物件所使用的所有系統資源。