-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
67 lines (52 loc) · 1.48 KB
/
test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include"Threadpool.h"
#include<iostream>
#include<chrono>
#include<thread>
using ULong = unsigned long long;
class MyTask :public Task
{
public:
MyTask(int begin, int end)
:begin_(begin)
, end_(end)
{}
Any run()
{
std::cout << "tid" << std::this_thread::get_id()
<< "begin!" << std::endl;
ULong sum = 0;
std::this_thread::sleep_for(std::chrono::seconds(3));
for (ULong i = begin_; i <= end_; i++)
sum += i;
std::cout << "tid" << std::this_thread::get_id()
<< "end!" << std::endl;
return sum;
}
private:
int begin_;
int end_;
};
int main()
{
{
ThreadPool pool;
pool.setMode(PoolMode::MODE_CACHED);
pool.start(4);
Result res1 = pool.submitTask(std::make_shared<MyTask>(1, 100000000));
Result res2 = pool.submitTask(std::make_shared<MyTask>(100000001, 200000000));
Result res3 = pool.submitTask(std::make_shared<MyTask>(200000001, 300000000));
pool.submitTask(std::make_shared<MyTask>(100000001, 200000000));
pool.submitTask(std::make_shared<MyTask>(100000001, 200000000));
pool.submitTask(std::make_shared<MyTask>(100000001, 200000000));
ULong sum1 = res1.get().cast_<ULong>();
ULong sum2 = res2.get().cast_<ULong>();
ULong sum3 = res3.get().cast_<ULong>();
std::cout << sum1 + sum2 + sum3 << std::endl;
/*ULong sum = 0;
for (ULong i = 0; i <= 300000000; i++)
sum += i;
std::cout << sum;*/
/*std::this_thread::sleep_for(std::chrono::seconds(5));*/
}
std::getchar();
}