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

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

ATL正则表达式库使用 - C/C++ - 清泛网 - 专注C/C++及内核技术

...f (!reUrl.Match( "http://search.microsoft.com/us/Search.asp?qu=atl&boolean=ALL#results", &mcUrl)) { // Unexpected error. return 0; } for (UINT nGroupIndex = 0; nGroupIndex < mcUrl.m_uNumGroups; ++nGroupIndex) { const CAtlREMatchContext<>::RECHAR...
https://www.tsingfun.com/it/cpp/1488.html 

shared_ptr指针被赋值后,原指针会引用清零、自动释放。 - C/C++ - 清泛网 ...

...::shared_ptr<int> p) { intg = p; // 原指针释放,存储新智能指针 //*(intg.get()) = *(p.get()); // 原指针不释放,仅修改原指针指向内容 } int _tmain(int argc, _TCHAR* argv[]) { { std::shared_ptr<int> sp(new int(2)...
https://bbs.tsingfun.com/thread-705-1-1.html 

stdbool.h C99标准杂谈 - c++1y / stl - 清泛IT社区,为创新赋能!

include &lt;stdbool.h&gt; 找不到头文件??? bool 是C++中关键字,C中不支持 所以C99标准中引入了头文件 stdbool.h,包含了四个用于布尔型预定义宏: #define true 1 #define false 0 #define bool _Bool typdef int _Bool 但是很遗憾,Visual C++...
https://bbs.tsingfun.com/thread-765-1-1.html 

shared_ptr指针被赋值后,原指针会引用清零、自动释放。 - C/C++ - 清泛IT...

...bsp; &nbsp;&nbsp;&nbsp;intg = p;&nbsp; &nbsp;// 原指针释放,存储新智能指针 &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;//*(intg.get()) = *(p.get());&nbsp; &nbsp;// 原指针不释放,仅修改原指针指向内容 } int _tmain(int argc, _TCHAR* argv[]) { &nbsp; &nbsp;&nbsp; &nbsp;&n...
https://www.tsingfun.com/it/cp... 

内存管理内幕:动态分配选择、折衷和实现 - C/C++ - 清泛网 - 专注C/C++及内核技术

...他程序使用。 实现这些需求程序库称为 分配程序(allocators),因为它们负责分配和回收内存。程序动态性越强,内存 管理就越重要,您内存分配程序选择也就更重要。让我们来了解可用于内存管理不同方法,它...
https://www.tsingfun.com/it/pr... 

项目管理实践【四】Bug跟踪管理【Bug Trace and Management】 - 项目管理 -...

...版本下载:http://downloads.sourceforge.net/bugnet/BugNET-0.7.921-Install.zip 源代码下载:http://downloads.sourceforge.net/bugnet/BugNET-0.7.921-Source.zip 英文文档:http://bugnetproject.com/Documentation/tabid/57/topic/Installation/Default.aspx 它具有发送邮件、生成报表...
https://www.tsingfun.com/it/da... 

MySQL一次主从数据不一致问题解决过程 - 数据库(内核) - 清泛网 - 专注C/...

...us 工具安装 在主库服务器安装 #安装依赖包 # yum install perl-DBI perl-DBD-MySQL perl-TermReadKey perl-Time-HiRes #安装工具 # wget percona.com/get/percona-toolkit.tar.gz # tar zxvf percona-toolkit-2.2.14.tar.gz # cd percona-toolkit-2.2.14 # perl Makefile.PL && make && ma...
https://www.tsingfun.com/it/cpp/1442.html 

mfc 画圆角矩形 - C/C++ - 清泛网 - 专注C/C++及内核技术

mfc 画圆角矩形先看效果:画圆角矩形函数:BOOL DrawRoundRect( CDC* pDC, LPCRECT lprcRect, SIZE sizeRound, DWORD dwColorFrame = COLOR_...先看效果: 画圆角矩形函数: BOOL DrawRoundRect( CDC* pDC, LPCRECT lprcRect, SIZE sizeRound, DWORD dwColorFrame = COLOR_...
https://www.tsingfun.com/it/bigdata_ai/1075.html 

记一次MongoDB性能问题 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

... mongod like this to avoid performance problems: numactl &ndash;interleave=all mongod [other options] 当时我并不太清楚NUMA是什么东西,所以没有处理,只是把问题反馈给了运维人员,后来知道运维人员也没有理会这茬儿,所以问题序幕就这样拉开...
https://www.tsingfun.com/it/cpp/2147.html 

GetNextDlgTabItem用法详解,回车替代Tab键切换控件焦点 - C/C++ - 清泛网 ...

...,TRUE往前,默认FALSE往后)检索对话框中有WS_TABSTOP类型第一个控件句柄,即按照对话框...GetNextDlgTabItem 函数按指定方向(第二个参数,TRUE往前,默认FALSE往后)检索对话框中有WS_TABSTOP类型第一个控件句柄,即按照对话...