美文网首页
c++11 std::thread demo

c++11 std::thread demo

作者: wasdzy111 | 来源:发表于2021-09-01 16:42 被阅读0次
    #include <iostream>
    #include <thread>
    using namespace std;
    
    using namespace std;
    struct thread_data {
        int threadId;
        char *message;
    };
    
    void hello(thread_data data) {
        cout << data.threadId << endl;
        cout << data.message << endl;
    }
    
    int main() {
        struct thread_data data;
        data.message = "qwe";
        data.threadId = 1;
        //第一个参数是方法名;第二个参数是方法所需参数
        thread th1(hello,data);
        th1.join();
        return 0;
    }
    
    

    相关文章

      网友评论

          本文标题:c++11 std::thread demo

          本文链接:https://www.haomeiwen.com/subject/flzxwltx.html