首页 > 代码库 > cocos2d-x3.2 下使用多线程
cocos2d-x3.2 下使用多线程
事实上在cocos2dx下使用多线程事实上就是用C++去写,这里提供几个简单的样例:
原文地址:http://blog.csdn.net/qqmcy/article/details/36227377
1、
// // PublicScene.cpp // testthirdone // // Created by 杜甲 on 14-7-1. // void hello() { log("hello thread"); } bool PublicScene::init() { bool bRet = false; do { CC_BREAK_IF(!Scene::init()); std::thread t1(hello); t1.join(); log("主线程"); bRet = true; } while (0); return bRet; } std::thread t1(hello); t1.join(); log("主线程");
2、
// // PublicScene.cpp // testthirdone // // Created by 杜甲 on 14-7-1. // // void hello() { log("hello thread"); } bool PublicScene::init() { bool bRet = false; do { CC_BREAK_IF(!Scene::init()); std::vector<std::thread> threads; for (int i = 0; i < 5; ++i) { threads.push_back(std::thread([ = ]() { log("%s",StringUtils::format(" thread %d",i).c_str()); })); } for (auto& thread :threads) { thread.join(); } log("Main Thread"); bRet = true; } while (0); return bRet; }
3、
// // PublicScene.cpp // testthirdone // // Created by 杜甲 on 14-7-1. // // void hello() { log("hello thread"); } bool PublicScene::init() { bool bRet = false; do { CC_BREAK_IF(!Scene::init()); std::mutex m; std::thread t1([&m](){ m.lock(); for (int i = 0; i < 10; i++) { log("%s",StringUtils::format(" thread1 %d",i).c_str()); } m.unlock(); }); std::thread t2([&m](){ m.lock(); for (int i = 0; i < 10; i++) { log("%s",StringUtils::format(" thread2 %d",i).c_str()); } m.unlock(); }); t1.join(); t2.join(); log("Main Thread"); bRet = true; } while (0); return bRet; }
cocos2d-x3.2 下使用多线程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。