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

https://www.tsingfun.com/it/cpp/1276.html 

boost自定义composite_key_compare比较函数 - C/C++ - 清泛网 - 专注C/C++及内核技术

...数中下断点进行调试。 // boost_demo.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "boost/shared_ptr.hpp" #include "boost/bimap.hpp" #include "boost/tuple/tuple.hpp" #include "boost/multi_index_container.hpp" #include "boost/multi_index/member.h...
https://www.tsingfun.com/it/cpp/1423.html 

CMap用法 - C/C++ - 清泛网 - 专注C/C++及内核技术

...l C++ MFC库参考”中的“宏和全局”部分中的“收集类帮助程序”。 CMap引入了宏IMPLEMENT_SERIAL,支持其元素的串行化和转储。如果映射存储到档案文件中,那么每一元素都可利用加载插入(<<)操作符或Serialize成员函数来依次进行...
https://www.tsingfun.com/it/cpp/1533.html 

64 bit OS下int占几个字节? - C/C++ - 清泛网 - 专注C/C++及内核技术

...都是4。 只与编译器位数有关,与OS位数无关,但64位程序不能运行在32位OS上。64bit int 字节
https://www.tsingfun.com/it/cpp/1563.html 

mfc spin control 用法 - C/C++ - 清泛网 - 专注C/C++及内核技术

..._cast<LPNMUPDOWN>(pNMHDR); // TODO: 在此添加控件通知处理程序代码 if(pNMUpDown->iDelta == 1) // 如果此值为1 , 说明点击了Spin的往下箭头 {... } else if(pNMUpDown->iDelta == -1) // 如果此值为-1 , 说明点击了Spin...
https://www.tsingfun.com/it/cpp/1577.html 

MFC OnKeyDown没反应,不响应键盘操作 - C/C++ - 清泛网 - 专注C/C++及内核技术

...键盘的哪个键OnKeyDown函数体都没有被执行。基于对话框的程序是无法直接响应键盘消息的,需要重载虚函数PreTranslateMessage()。 解决方案(重载PreTranslateMessage函数): virtual BOOL PreTranslateMessage(MSG* pMsg); ... BOOL CxxxDlg::PreTransla...
https://www.tsingfun.com/it/cpp/1586.html 

C++代码执行安装包静默安装 - C/C++ - 清泛网 - 专注C/C++及内核技术

... ::GetLastErrorString(strMsg); LOG_ERROR(_T("启动安装程序失败:%s"), strMsg); return -1; } ... WaitForSingleObject( sei.hProcess, 0 ); sei.fMask = SEE_MASK_NOCLOSEPROCESS; //不可少,否则不会等待安装结束 C++ 安...
https://www.tsingfun.com/it/cpp/1784.html 

c++ 代码调用nsis安装包实现静默安装 - C/C++ - 清泛网 - 专注C/C++及内核技术

... ::GetLastErrorString(strMsg); LOG_ERROR(_T("启动安装程序失败:%s"), strMsg); return -1; } m_hCreatePackage = sei.hProcess; // 句柄 m_hCreatePackage 存储安装包进程的句柄,有了它我们就可以使用 Wai...
https://www.tsingfun.com/it/cpp/2033.html 

atol 头文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

...能: 把字符串转换成长整型数用法: longatol(const char *nptr);程序例:#include <stdlib.h> #includ...#include <stdlib.h> 函数名: atol 功 能: 把字符串转换成长整型数 用 法: long atol(const char *nptr); 实例: #include <stdlib.h> #include <stdio.h> in...
https://www.tsingfun.com/it/cpp/2080.html 

什么是 Ringbuffer ? - C/C++ - 清泛网 - 专注C/C++及内核技术

...可以为数组预先分配内存,使得数组对象一直存在(除非程序终止)。这就意味着不需要花大量的时间用于垃圾回收。此外,不像链表那样,需要为每一个添加到其上面的对象创造节点对象—对应的,当删除节点时,需要执行相...
https://www.tsingfun.com/it/cpp/2125.html 

MFC CEdit控件自绘、MFC圆角输入框 - C/C++ - 清泛网 - 专注C/C++及内核技术

...N_WM_CTLCOLOR_REFLECT() END_MESSAGE_MAP() // CWEEditCtrl 消息处理程序 HBRUSH CMyEdit::CtlColor(CDC* pDC, UINT /*nCtlColor*/) { //pDC->SetBkMode(TRANSPARENT); if(IsWindowEnabled()) { m_brushBkg.DeleteObject(); m_brushBkg.CreateSolidBrush(m_clrBackground); pDC->SetTextColo...