Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ฉันจะยุติเธรดใน C ++ 11 ได้อย่างไร


ที่นี่เราจะดูวิธียุติเธรดใน C++11 C++11 ไม่มีวิธีการโดยตรงในการยุติเธรด

std::future สามารถใช้กับเธรดได้ และควรออกเมื่อค่าในอนาคตพร้อมใช้งาน หากเราต้องการส่งสัญญาณไปยังเธรดแต่ไม่ส่งค่าจริง เราก็สามารถส่งผ่านอ็อบเจกต์ประเภท void ได้

ในการสร้างสัญญาหนึ่งอ็อบเจ็กต์ เราต้องปฏิบัติตามวากยสัมพันธ์นี้ -

std::promise<void> exitSignal;

ตอนนี้ดึงวัตถุในอนาคตที่เกี่ยวข้องจากวัตถุสัญญาที่สร้างขึ้นนี้ในฟังก์ชันหลัก -

std::future<void> futureObj = exitSignal.get_future();

ตอนนี้ส่งฟังก์ชั่นหลักในขณะที่สร้างเธรด ส่งต่อวัตถุในอนาคต -

std::thread th(&threadFunction, std::move(futureObj));

ตัวอย่าง

#include <thread>
#include <iostream>
#include <assert.h>
#include <chrono>
#include <future>
using namespace std;
void threadFunction(std::future<void> future){
   std::cout << "Starting the thread" << std::endl;
   while (future.wait_for(std::chrono::milliseconds(1)) == std::future_status::timeout){
      std::cout << "Executing the thread....." << std::endl;
      std::this_thread::sleep_for(std::chrono::milliseconds(500)); //wait for 500 milliseconds
   }
   std::cout << "Thread Terminated" << std::endl;
}
main(){
   std::promise<void> signal_exit; //create promise object
   std::future<void> future = signal_exit.get_future();//create future objects
   std::thread my_thread(&threadFunction, std::move(future)); //start thread, and move future
   std::this_thread::sleep_for(std::chrono::seconds(7)); //wait for 7 seconds
   std::cout << "Threads will be stopped soon...." << std::endl;
   signal_exit.set_value(); //set value into promise
   my_thread.join(); //join the thread with the main thread
   std::cout << "Doing task in main function" << std::endl;
}

ผลลัพธ์

Starting the thread
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Executing the thread.....
Threads will be stopped soon....
Thread Terminated
Doing task in main function