-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10-P6.cc
32 lines (30 loc) · 870 Bytes
/
10-P6.cc
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
// 线程共享资源问题----只读数据是安全的
#include <iostream>
#include <thread>
#include <string>
#include <vector>
std::vector<int> ints={1,2,3};
void a_func()
{
std::cout << "a_func: thread id: " << std::this_thread::get_id() << std::endl;
#define CONDITION 0
#if CONDITION==0
// 1. 只读数据是安全的
std::cout << "ints: " << ints[0]<<", "<< ints[1]<<", "<< ints[2]<<", " << std::endl;
#elif CONDITION==1
#else
#endif
}
int main(int argc, char const *argv[])
{
std::cout << "main: thread id: " << std::this_thread::get_id() << std::endl;
std::vector<std::thread> trds;
for(int i = 0; i < 10; i++){
trds.push_back(std::thread(a_func));
}
for(auto iter = trds.begin(); iter != trds.end();iter++){
iter->join();
}
std::cout << "this is main!" << std::endl;
return 0;
}