std::shared_ptr<std::thread> get_thread_;get_thread_ = std::make_shared<std::thread>(std::bind(&HTTPClient::get_list, 1));语法对吗
时间: 2023-06-23 20:50:00 浏览: 282
这段代码的语法有一些问题。
首先,std::bind函数的第二个参数应该是一个函数对象,而不是一个整数类型的值。在这里,1是一个整数类型的值,应该替换为一个能够调用HTTPClient::get_list函数的函数对象。
其次,std::thread的构造函数需要的第一个参数应该是一个可调用对象,而不是一个返回值为可调用对象的智能指针。在这里,可以使用get_thread_指针的解引用运算符将其转换为std::thread对象,然后调用joinable函数来检查线程是否可以加入。
因此,正确的代码应该是:
```
std::shared_ptr<std::thread> get_thread_;
get_thread_ = std::make_shared<std::thread>(&HTTPClient::get_list, this);
if (get_thread_->joinable()) {
get_thread_->join();
}
```
这里的this指针用于将HTTPClient对象作为第一个参数传递给get_list函数。另外,在启动线程之前,应该检查线程是否可以加入,以避免在线程结束之前销毁智能指针。
相关问题
函数想传参怎么改写:std::shared_ptr<std::thread> get_thread_; get_thread_ = std::make_shared<std::thread>(&HTTPClient::get_list, this); if (get_thread_->joinable()) { get_thread_->join(); }
如果需要传递参数给get_list函数,可以在std::make_shared函数中添加参数,这些参数将被传递给get_list函数。例如,如果需要将整数1和字符串"example"传递给get_list函数,可以将代码修改为:
```
std::shared_ptr<std::thread> get_thread_;
get_thread_ = std::make_shared<std::thread>(&HTTPClient::get_list, this, 1, "example");
if (get_thread_->joinable()) {
get_thread_->join();
}
```
这里的1和"example"将作为额外的参数传递给get_list函数。需要注意的是,这些参数的类型必须与get_list函数的参数类型匹配。例如,如果get_list函数的参数类型是int和const std::string&,那么传递给std::make_shared函数的参数类型也应该是int和const std::string&。
#include <vector> #include <queue> #include <thread> #include <mutex> #include <condition_variable> #include <functional> #include <future> class ThreadPool { public: ThreadPool(size_t threads) : stop(false) { for (size_t i = 0; i < threads; ++i) { workers.emplace_back([this] { for (;;) { std::function<void()> task; { std::unique_lockstd::mutex lock(this->queue_mutex); this->condition.wait(lock, [this] { return this->stop || !this->tasks.empty(); }); if (this->stop && this->tasks.empty()) return; task = std::move(this->tasks.front()); this->tasks.pop(); } task(); } }); } } ~ThreadPool() { { std::unique_lockstd::mutex lock(queue_mutex); stop = true; } condition.notify_all(); for (std::thread &worker : workers) worker.join(); } template<class F, class... Args> auto enqueue(F&& f, Args&&... args) -> std::future<typename std::result_of<F(Args...)>::type> { using return_type = typename std::result_of<F(Args...)>::type; auto task = std::make_shared<std::packaged_task<return_type()>>(std::bind(std::forward<F>(f), std::forward<Args>(args)...)); std::future<return_type> res = task->get_future(); { std_lockstd::mutex lock(queue_mutex); if (stop) throw std::runtime_error("enqueue on stopped ThreadPool"); tasks.emplace([task] { (*task)(); }); } condition.notify_one(); return res; } private: std::vectorstd::thread workers; std::queue<std::function<void()>> tasks; std::mutex queue_mutex; std::condition_variable condition; bool stop; }; 怎么获取结果
可以使用`std::future`来获取线程池中任务的返回值。在`enqueue`函数中,任务被包装在`std::packaged_task`中,这个包装器可以将一个函数包装成一个可调用对象,并且可以使用`std::future`来获取函数的返回值。
在`enqueue`函数中,我们使用`std::make_shared`创建了一个`std::packaged_task`,并将要执行的任务`f`和其参数`args`绑定在一起。然后,我们将这个`std::packaged_task`封装在一个`std::shared_ptr`中,以便可以在其他线程中访问它。
接下来,我们使用`std::future`获取`std::packaged_task`的返回值。`std::future`是一个异步结果的占位符,可以用来检查任务是否已经完成,并且可以获取任务的返回值。
具体地,我们可以在调用`enqueue`函数后,使用返回的`std::future`对象的`get()`函数来获取任务的返回值。`get()`函数会阻塞当前线程,直到任务执行完毕并返回结果。
例如,假设我们要执行一个函数`int add(int x, int y)`,我们可以使用以下方式来获取其结果:
```c++
ThreadPool pool(4); // 创建线程池,有4个线程
// 将任务加入线程池,并获取返回值的future对象
auto result = pool.enqueue(add, 3, 4);
// 等待任务执行完成,并获取返回值
int res = result.get();
std::cout << "3 + 4 = " << res << std::endl;
```
这里的`result.get()`会阻塞当前线程,直到任务执行完毕并返回结果。最后,我们将`res`输出到控制台。
阅读全文