天行健,君子以自强不息!
发布时间: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.........【阅读全文】
发布时间:2015-12-22 17:18:09
最近在看看cocos2dx的源代码,发现了cocos2dx 3.0相对于2.0改动了很多,最大的改变就是大量的使用了C++11的特性,比如auto等。其中有一个关于回调函数绑定的宏定义就使用了std::bind特性// new callbacks based on C++11#define CC_CALLBACK_0(__selector__,__target__, ...) std::bind(&__selector__,__target__, ##.........【阅读全文】
发布时间:2015-12-17 17:00:36
一、传统的获取系统时间的方法传统的C++获取时间的方法需要分平台来定义。相信百度代码也不少。我自己写了下,如下。const std::string getCurrentSystemTime(){ if (PLATFORM_ANDROID || PLATFORM_IOS) { struct timeval s_now; struct tm* p_tm; &nb.........【阅读全文】
发布时间:2015-12-17 14:44:06
在std::shared_ptr被引入之前,C++标准库中实现的用于管理资源的智能指针只有std::auto_ptr一个而已。std::auto_ptr的作用非常有限,因为它存在被管理资源的所有权转移问题。这导致多个std::auto_ptr类型的局部变量不能共享同一个资源,这个问题是非常严重的哦。因为,我个人觉得,智能指针内存管理要解决的根本问题是.........【阅读全文】