#include <iostream>#include <omp.h>#define ARRAY_SIZE 100using namespace std;int main(){ int threadIds[ARRAY_SIZE] = { 0 };#PRagma omp parallel for for(int i = 0; i < ARRAY_SIZE; ++i) { //这里循环迭代器是一个私有变量,所有不需要用private子句明显指明 threadIds[i] = omp_get_thread_num(); } cout << "thread id : /n"; for(auto e : threadIds) { cout << e << " "; } cout << endl; cin.get(); return 0;}二、运行结果
1、当ARRAY_SIZE为100时运行效果如下
2、当ARRAY_SIZE为1000时运行效果如下
新闻热点
疑难解答