我正在对 std::thread 和 C++11 进行一些试验,但遇到了奇怪的行为。请看下面的代码:
#include <cstdlib>
#include <thread>
#include <vector>
#include <iostream>
void thread_sum_up(const size_t n, size_t& count) {
size_t i;
for (i = 0; i < n; ++i);
count = i;
}
class A {
public:
A(const size_t x) : x_(x) {}
size_t sum_up(const size_t num_threads) const {
size_t i;
std::vector<std::thread> threads;
std::vector<size_t> data_vector;
for (i = 0; i < num_threads; ++i) {
data_vector.push_back(0);
threads.push_back(std::thread(thread_sum_up, x_, std::ref(data_vector[i])));
}
std::cout << "Threads started ...\n";
for (i = 0; i < num_threads; ++i)
threads[i].join();
size_t sum = 0;
for (i = 0; i < num_threads; ++i)
sum += data_vector[i];
return sum;
}
private:
const size_t x_;
};
int main(int argc, char* argv[]) {
const size_t x = atoi(argv[1]);
const size_t num_threads = atoi(argv[2]);
A a(x);
std::cout << a.sum_up(num_threads) << std::endl;
return 0;
}
这里的主要思想是我想指定一些进行独立计算的线程(在这种情况下,是简单的增量)。在所有线程完成后,应合并结果以获得整体结果。
澄清一下:这仅用于测试目的,以便让我了解 C++11 线程是如何工作的。
但是,在使用命令编译此代码时
g++ -o threads threads.cpp -pthread -O0 -std=c++0x
在 Ubuntu 机器上,当我执行生成的二进制文件时,我得到了非常奇怪的行为。例如:
$ ./threads 1000 4
Threads started ...
Segmentation fault (core dumped)
(应该产生输出:4000)
$ ./threads 100000 4
Threads started ...
200000
(应该产生输出:400000)
有人知道这里发生了什么吗?
先感谢您!