天行健,君子以自强不息!
发布时间:2016-04-09 22:48:30
Boost_1_53_0终于迎来了久违的Boost.Lockfree模块,本着学习的心态,将其翻译如下。(原文地址:http://www.boost.org/doc/libs/1_53_0/doc/html/lockfree.html) Chapter 17. Boost.Lockfree第17章.Boost.LockfreeTable of Contents目录Introduction& Mot.........【阅读全文】
发布时间:2016-04-09 08:33:03
Boost库是一个功能强大,构造精巧,跨平台,开源并且完全免费的C++程序库,它作为标准库的后备,是C++标准化进程的发动机之一,在linux安装过程如下:去官方网站下载最新的:www.boost.org一,下载,编译安装,需要到官方网站下载最新的版本,最新已经到1.60.0。$ tar -jxvf boost_1_60_0.tar.bz2 $ cd boost_1_.........【阅读全文】
发布时间:2016-02-01 16:37:06
1、在项目的pom.xml中添加该jar包的<dependency> 依赖标签,用以表名在项目中应用该jar包。<dependency> <groupId>xml2html</groupId> <artifactId>xml2html</artifactId> <version>1.0</version> <type>jar</type> <scope>compile</scope> </dependency>.........【阅读全文】
发布时间:2015-12-30 19:49:51
http://soft.zdnet.com.cn/software_zone/2008/0214/735181.shtml main loop使用模式大致如下:loop = g_main_loop_new (NULL, TRUE);g_main_loop_run (loop); g_main_loop_new创建一个main loop对象,一个main loop对象只能被一.........【阅读全文】
发布时间:2015-12-22 17:33:18
这几天学习Cocos2d-x,看到了以下的一段代码:// new callbacks based on C++11#define CC_CALLBACK_0(__selector__,__target__, ...) std::bind(&__selector__,__target__, ##__VA_ARGS__)#define CC_CALLBACK_1(__selector__,__target__, ...) std::bind(&__selector__,__target__, std::placeholders::_1, ##__VA_AR.........【阅读全文】