怎么介绍?
发布时间:2014-09-03 11:56:33
http://www.cnblogs.com/08shiyan/archive/2012/03/16/2399617.htmlSingleton模式是常用的设计模式之一,但是要实现一个真正实用的设计模式却也不是件容易的事情。 1. 标准的实现 class Singleton{ public: static Singleton * Instance() { if( 0== _instance) { _i.........【阅读全文】
发布时间:2014-08-06 11:18:13
http://blog.sina.com.cn/s/blog_75f0b54d0100r7af.html操作系统中锁的实现原理 (2011-03-06 19:50:19)转载▼标签: os 锁 操作系统 杂谈.........【阅读全文】
发布时间:2013-08-12 04:46:13
http://stackoverflow.com/questions/332030/when-should-static-cast-dynamic-cast-and-reinterpret-cast-be-usedstatic_cast is the first cast you should attempt to use. It does things like implicit conversions between types (such as int to float, or pointer to void*), and it can also call explic.........【阅读全文】
发布时间:2013-07-24 23:46:06
http://guiquanz.github.io/2012/12/03/facebook-folly-intro/缘由仅针对 Fedora 17 x86-64平台, g++ 4.7.2环境Folly是,Facebook于2012年6月初开源的一个基于C++11的C++组件库,提供了类似Boost库和std库的功能,包括散列、字符串、向量、内存分配、位处理等,以满足大规模高性能的需求,对Boost和std进行.........【阅读全文】
发布时间:2013-02-06 10:08:44
The directory named by the `--prefix' option will hold machine independent files such as info files.The directory named by the `--exec-prefix' option, which is normally a subdirectory of the `--prefix' directory, will hold machine dependent files such as executables.The default for `--prefix.........【阅读全文】