4
การรวบรวมโค้ดมัลติเธรดด้วย g ++
ฉันมีรหัสที่ง่ายที่สุดที่เคยมีมา: #include <iostream> #include <thread> void worker() { std::cout << "another thread"; } int main() { std::thread t(worker); std::cout << "main thread" << std::endl; t.join(); return 0; } แม้ว่าฉันจะยังไม่สามารถรวบรวมg++เพื่อเรียกใช้ รายละเอียดเพิ่มเติม: $ g++ --version g++ (Ubuntu/Linaro 4.8.1-10ubuntu8) 4.8.1 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the …