大约有 40,000 项符合查询结果(耗时:0.0196秒) [XML]

https://www.tsingfun.com/down/... 

深入解析ATL - 文档下载 - 清泛网移动版 - 专注C++内核技术

...ARIANT类CComVariant  3.2 智能SAFEARRAY类CComSafeArray  3.3 智能指针类CComPtr和CComQIPtr  3.4 智能指针类CAutoPtr和CAutoVectorPtr  3.5 ATL内存管理器  3.6 总结 第4章 ATL中对象  4.1 实现IUnknown  4.2 ATL层次  4.3 线程模型支持  4.4 I...
https://www.tsingfun.com/down/... 

深入解析ATL - 文档下载 - 清泛网 - 专注C++内核技术

...ARIANT类CComVariant  3.2 智能SAFEARRAY类CComSafeArray  3.3 智能指针类CComPtr和CComQIPtr  3.4 智能指针类CAutoPtr和CAutoVectorPtr  3.5 ATL内存管理器  3.6 总结 第4章 ATL中对象  4.1 实现IUnknown  4.2 ATL层次  4.3 线程模型支持  4.4 I...
https://www.tsingfun.com/down/... 

深入解析ATL - 文档下载 - 清泛网 - 专注C/C++及内核技术

...ARIANT类CComVariant  3.2 智能SAFEARRAY类CComSafeArray  3.3 智能指针类CComPtr和CComQIPtr  3.4 智能指针类CAutoPtr和CAutoVectorPtr  3.5 ATL内存管理器  3.6 总结 第4章 ATL中对象  4.1 实现IUnknown  4.2 ATL层次  4.3 线程模型支持  4.4 I...
https://www.tsingfun.com/down/... 

深入解析ATL - 文档下载 - 清泛网移动版 - 专注C/C++及内核技术

...ARIANT类CComVariant  3.2 智能SAFEARRAY类CComSafeArray  3.3 智能指针类CComPtr和CComQIPtr  3.4 智能指针类CAutoPtr和CAutoVectorPtr  3.5 ATL内存管理器  3.6 总结 第4章 ATL中对象  4.1 实现IUnknown  4.2 ATL层次  4.3 线程模型支持  4.4 I...
https://www.tsingfun.com/down/... 

深入解析ATL - 文档下载 - 清泛网 - 专注C/C++及内核技术

...ARIANT类CComVariant  3.2 智能SAFEARRAY类CComSafeArray  3.3 智能指针类CComPtr和CComQIPtr  3.4 智能指针类CAutoPtr和CAutoVectorPtr  3.5 ATL内存管理器  3.6 总结 第4章 ATL中对象  4.1 实现IUnknown  4.2 ATL层次  4.3 线程模型支持  4.4 I...
https://www.tsingfun.com/it/tech/2269.html 

单页web应用(SPA)简单介绍 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...栏变化,界面会相应地变化。当然,除了手动在地址栏里面改变hash变化,我们也可以用代码改变它变化,从而推动界面变化, window.localtion.hash="A"; 下面是一个利用$.ajax实现单页面切换例子: window.onhashchange = fu...
https://bbs.tsingfun.com/thread-902-1-1.html 

CDC:DrawText 多行显示文本(文本自动换行) - C++ UI - 清泛IT社区,为创新赋能!

...境句柄。     lpString:指向将被写入字符串指针,如果参数nCount是C1,则字符串必须是以\0结束。     如果uFormat包含DT_MODIFYSTRING,则函数可为此字符串增加4个字符,存放字符串缓冲区必须足够大,能容...
https://stackoverflow.com/ques... 

.Contains() on a list of custom class objects

...? That said though, it might be more readable to someone not familiar with lamdas... – Martin Milan Apr 13 '10 at 13:15 ...
https://www.tsingfun.com/down/ebook/61.html 

用VC实现组态王数据远程共享 - 文档下载 - 清泛网 - 专注C/C++及内核技术

...e)工作原理是: 甲方申请一块全局内存,然后把内存指针postmessage到乙方,乙方根据收到指针访问那块全局内存。有几个API函数是做这种事,你在MSDN里查一下 Dde 打头函数全都出来了。因为是已经淘汰技术,连MFC都...
https://www.tsingfun.com/it/cpp/2035.html 

error C2440: “初始化”: 无法从“const int”转换为“int &” - C/C++ - ...

...onst int &iRefval = iSize;//ok int &iRef = iSize;//不允许非const引用绑定到const对象 const int &icRef = iCnt;//const引用可以绑定到右值 std::cout<<"iRefval: "<<iRefval<<std::endl; std::cout<<"icRef: "<<icRef<<std::endl; return 0; } 解决...