开发者

smart pointers in windows programming

开发者 https://www.devze.com 2023-02-26 08:21 出处:网络
Excluding STL, I only found CComPtr in C++ windo开发者_如何学Gows programming. Is there any other types of smart pointers in windows SDK? Thanks.First, STL\'s and boost\'s smart pointers are available

Excluding STL, I only found CComPtr in C++ windo开发者_如何学Gows programming. Is there any other types of smart pointers in windows SDK? Thanks.


First, STL's and boost's smart pointers are available on Windows and there's nothing wrong with using those.

Speaking of purely Windows stuff, COM interface pointers, with their AddRef/Release lifetime management model, readily lends itself to smart pointers. There are some smart pointer classes in Windows-specific libraries that are geared towards storing COM interface pointers. In addition to the ATL's CComPtr<>, there's _com_ptr_t<> of Microsoft Native COM, and MFC's COleDispatchDriver. The latter is hardly ever used with the advent of Native COM. With the exception of CComPtr, those are used together with type library import facilities.


In the Windows SDK (specific to ATL), there is CAutoPtr(single item allocation) and CAutoVectorPtr (array allocation).


The MSDN article states that CComPtr is designed to be used with COM objects only. Generally Boost smart pointers are commonly used as a platform-independent C++ smart pointer library. Since the concept of smart pointers isn't bound to a particular OS, there's really no need to use a smart pointer implementation bound to Windows, even if that's the only platform you plan on developing the application for.

0

精彩评论

暂无评论...
验证码 换一张
取 消