会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
chunyou128
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
···
9
10
11
12
13
14
15
16
17
···
33
下一页
2015年4月17日
牛人让我学scala
摘要: 牛人让我学scala初识Kestrel
阅读全文
posted @ 2015-04-17 00:29 无名使者
阅读(131)
评论(0)
推荐(0)
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 无名使者
阅读(146)
评论(0)
推荐(0)
线程池
摘要: 线程池
阅读全文
posted @ 2015-03-24 21:42 无名使者
阅读(109)
评论(0)
推荐(0)
CSingleLock
摘要: CSingleLock通常和CCriticalSection配合使用。总结这种用法
阅读全文
posted @ 2015-03-24 21:28 无名使者
阅读(509)
评论(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 无名使者
阅读(149)
评论(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 无名使者
阅读(247)
评论(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 无名使者
阅读(155)
评论(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 无名使者
阅读(291)
评论(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 无名使者
阅读(194)
评论(0)
推荐(0)
上一页
1
···
9
10
11
12
13
14
15
16
17
···
33
下一页