发布于2026-07-13 阅读(0)
扫一扫,手机访问
在Ubuntu上做C++并发开发,其实路子还挺多的。C++本身的生态和Linux底层的线程支持,给开发者提供了不少趁手的工具。下面就从最基础的开始,把常见的方案和注意事项捋一遍。

C++11标准线程库——从入门就得用。C++11带来的std::thread让多线程编程不再需要手动调POSIX API,直接写起来就像创建普通函数一样简单。看个最简单的例子:
#include #include void helloFunction() {std::cout << "Hello from a thread!" << std::endl;}int main() {std::thread t(helloFunction);t.join();return 0;} 启动线程、等待线程结束,基本就是这回事。
互斥锁(Mutexes)——共享资源必备的保护伞。多个线程同时写一个变量,结果大概率不是你想要的。用std::mutex锁住关键区段,保证同一时间只有一个线程进得来:
#include #include #include std::mutex mtx;void printMessage(const std::string& msg) {mtx.lock();std::cout << msg << std::endl;mtx.unlock();}int main() {std::thread t1(printMessage, "Hello from thread 1");std::thread t2(printMessage, "Hello from thread 2");t1.join();t2.join();return 0;} 当然,更推荐用std::lock_guard或者std::scoped_lock来自动管理锁的生命周期,防止忘记释放。
条件变量(Condition Variables)——线程间的“信号灯”。有时候一个线程需要等另一个线程把某个条件准备好才能继续,条件变量就是干这个的。下面这个例子展示了10个线程都在等待一个“开始”信号:
#include #include #include #include std::mutex mtx;std::condition_variable cv;bool ready = false;void printId(int id) {std::unique_lock lck(mtx);cv.wait(lck, []{return ready;});std::cout << "Thread " << id << std::endl;}void go() {std::lock_guard lck(mtx);ready = true;cv.notify_all();}int main() {std::thread threads[10];for (int i = 0; i < 10; ++i)threads[i] = std::thread(printId, i);std::cout << "10 threads ready to race..." << std::endl;go();for (auto &th : threads) th.join();return 0;} 注意cv.wait配合一个lambda条件,可以避免虚假唤醒的问题。
原子操作(Atomic Operations)——无锁的轻量级选择。如果你只是要对一个整数做加减或者赋值,完全可以用std::atomic代替互斥锁,效率高得多。看这个计数器的例子:
#include #include #include std::atomic sharedValue(0);void incrementValue() {for (int i = 0; i < 100000; ++i) {sharedValue++;}}int main() {std::thread t1(incrementValue);std::thread t2(incrementValue);t1.join();t2.join();std::cout << "Final value: " << sharedValue << std::endl;return 0;} 注意,sharedValue++在这里是原子的,不会出现数据竞争。
更多并发库——如果标准库不够用,还有专门的“武器库”。比如Boost.Asio搞定异步I/O和网络并发,Intel TBB提供并行算法和任务调度,OpenMP用几行指令就能让循环并行化。具体选哪个,看项目场景和团队习惯。
最佳实践——新手最容易踩的几个坑:
std::lock_guard、std::scoped_lock、std::unique_lock等智能锁,别手动lock/unlock。std::lock一次锁多个互斥量,避免交叉等待。最后,编译时记得加-pthread和C++标准版本控制。比如在Ubuntu上用g++:
g++ -std=c++11 -pthread your_program.cpp -o your_program-pthread是链接POSIX线程库的关键,少了它程序可能跑不起来。只要这些工具用对了,并发编程在C++里并没有想象中那么可怕。
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
正版软件
正版软件
正版软件
正版软件
正版软件
1
2
3
7
8