代码拉取完成,页面将自动刷新
同步操作将从 Rocky/ThreadPool 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include <cstdio>
#include "threadpool2/thread_pool.hpp"
float Sum(float end)
{
float s = 0;
float i = 0.0f;
while (i < end) {
s += i;
std::this_thread::sleep_for(std::chrono::milliseconds(10));
i += 0.5;
}
return s;
}
struct SumFunctor {
float end;
SumFunctor(float e) : end(e) {}
float operator()()
{
float s = 0;
float i = 0.0f;
while (i < end) {
s += i;
std::this_thread::sleep_for(std::chrono::milliseconds(10));
i += 0.5;
}
return s;
}
};
int main(int argc, char **argv) {
ThreadPool pool;
std::vector<std::future<float>> futures;
for (int i = 0; i < 20; i++) {
futures.emplace_back(pool.commit([](int k) -> float {
float s = 0;
for (int j = 0; j < k; j++) {
s += j;
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
return s;
}, i));
}
for (auto &f : futures) {
auto ret = f.get();
printf("[lambda] result: %f\n", ret);
}
futures.clear();
float i = 100;
while(i < 110) {
futures.emplace_back(pool.commit(Sum, i));
std::this_thread::sleep_for(std::chrono::seconds(1));
i += 1.0f;
}
for (auto &f : futures) {
auto ret = f.get();
printf("[function] result: %f\n", ret);
}
futures.clear();
while(i < 120) {
futures.emplace_back(pool.commit(SumFunctor(i)));
std::this_thread::sleep_for(std::chrono::seconds(1));
i += 1.0f;
}
for (auto &f : futures) {
auto ret = f.get();
printf("[functor] result: %f\n", ret);
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。