• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






chunyou128

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页

2015年3月24日

编译时多态
摘要: #include "stdafx.h"#include using namespace std;template class B1{public: void SayHi() { T* pT = static_cast(this); // HUH?? I'll explain this be... 阅读全文
posted @ 2015-03-24 23:18 无名使者 阅读(145) 评论(0) 推荐(0)
 
线程池
摘要: 线程池 阅读全文
posted @ 2015-03-24 21:42 无名使者 阅读(108) 评论(0) 推荐(0)
 
CSingleLock
摘要: CSingleLock通常和CCriticalSection配合使用。总结这种用法 阅读全文
posted @ 2015-03-24 21:28 无名使者 阅读(508) 评论(0) 推荐(0)
 

2015年3月20日

c++ explicit
摘要: // explicit.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#includeclass MyClass { public: /*explicit*/ MyClass( int num ) { }}; int _tmain(int argc, _TCHA... 阅读全文
posted @ 2015-03-20 21:49 无名使者 阅读(147) 评论(0) 推荐(0)
 
C++ namespace
摘要: // namespace.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include namespace MyLib { double readAndProcessSum (std::istream&);}int _tmain(int arg... 阅读全文
posted @ 2015-03-20 21:28 无名使者 阅读(244) 评论(0) 推荐(0)
 
ftp
该文被密码保护。 阅读全文
posted @ 2015-03-20 00:55 无名使者 阅读(0) 评论(0) 推荐(0)
 

2015年3月18日

WaitForSingleObject
摘要: DWORD dwFlag = ::WaitForSingleObject(m_threadEvents[0], 0) ; switch (dwFlag) { case WAIT_OBJECT_0: break; case WAIT_TIMEOUT: ... 阅读全文
posted @ 2015-03-18 17:19 无名使者 阅读(154) 评论(0) 推荐(0)
 

2015年3月14日

自定义new和delete
摘要: #include "stdafx.h"#include #include #include #includeusing namespace std;class Myclass;Myclass* x1 = NULL;Myclass* x2 = NULL;Myclass* x3 = NULL;class... 阅读全文
posted @ 2015-03-14 20:37 无名使者 阅读(288) 评论(0) 推荐(0)
 

2015年3月8日

C++内存泄漏及检测工具详解
摘要: #include "stdafx.h"#ifdef _DEBUG#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)#else#define DEBUG_CLIENTBLOCK#endif#define _CRTDBG... 阅读全文
posted @ 2015-03-08 22:18 无名使者 阅读(190) 评论(0) 推荐(0)
 

2015年3月7日

百度文库 冰点文档下载
摘要: 哪位同学知道,百度文库,用什么软件可以免费下载上面的文档?冰点文档下载 阅读全文
posted @ 2015-03-07 21:19 无名使者 阅读(251) 评论(0) 推荐(0)
 
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页