• 安卓线程使用问题


    笔者今天使用c++ 11的 std::thread在安卓设备上来创建线程控制网络异步发送,发现线程启动就马上闪退,估计是安卓设备上不支持c++11的线程库,或者安卓系统版本过低,所以还是用回以前的pthread_create来创建线程,以下是三种创建线程的方法以及对应使用方法:

     std::thread方法:(支持windowsphone,windowsRT,ios,mac平台)

    std::thread m_thread = std::thread(&Upgrade::requestHttp,this);

       m_thread.detach();

    pthread_create方法:(支持Unix、Linux、Mac OS X、IOS、安卓)

    pthread_t _thread;

    pthread_create(&_thread, NULL, &Upgrade::requestHttp, this);

    pthread_detach(_thread);

    CreateThread方法:(支持windows pc平台)

    CreateThread(NULL,          // default security attributes

                     0,             // use default stack size

                     &Upgrade::requestHttp,   // thread function name

                     this,          // argument to thread function

                     0,             // use default creation flags

                     NULL);

    转载请注明出处,from 博客园 HemJohn

  • 相关阅读:
    1083 List Grades (25 分)
    1075 PAT Judge (25 分)
    15. 会话之session
    我的编程路----
    jQuery
    CSS
    HTML display 属性 和 行内元素、块状元素、行内块状元素的区别
    实例1 : 返回顶部小操作(JQ + JS 实现)
    jQuery 事件方法
    为什么静态方法 不可以 被 非静态方法调用?
  • 原文地址:https://www.cnblogs.com/HemJohn/p/4883981.html
Copyright © 2020-2023  润新知