当前位置: 首页 > article >正文

线程---实践与技巧(C语言)

        

目录

一、引言

二、线程基础

   1.线程概念

   2.线程库

三、线程的创建与终止

   1.创建线程

   2.终止线程

四、线程同步与互斥

   1.互斥锁(Mutex)

   2.条件变量(Condition Variable)

五、线程间的通信

六、总结        


        本文将详细介绍C语言中线程的使用方法,探讨线程的创建、同步、互斥以及线程间的通信等关键技术。通过实际案例,帮助读者掌握C语言线程编程的核心技巧,为高效并发编程打下坚实基础。

一、引言

        在当今多核处理器普及的时代,多线程编程已经成为提高程序性能的重要手段。C语言由于其高性能和底层操作能力,在多线程编程领域有着广泛的应用。本文将带领读者深入了解C语言中的线程编程。

二、线程基础

   1.线程概念

        线程是操作系统能够进行运算调度的最小单位,它被包含在进程之中,是轻量级的执行流。与进程相比,线程的创建和销毁开销更小,线程间切换速度更快。

   2.线程库

        在C语言中,我们通常使用POSIX线程库(pthread)来进行线程的创建和管理。要使用pthread库,需要在编译时链接pthread库。

gcc -o thread_example thread_example.c -lpthread

三、线程的创建与终止

   1.创建线程

使用pthread_create函数可以创建一个新的线程。

#include <pthread.h>

int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
                  void *(*start_routine) (void *), void *arg);

示例代码:

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>

void* thread_function(void* arg) {
    printf("Hello from the thread!\n");
    return NULL;
}

int main() {
    pthread_t thread_id;
    if (pthread_create(&thread_id, NULL, thread_function, NULL) != 0) {
        perror("pthread_create");
        return 1;
    }
    pthread_join(thread_id, NULL);
    return 0;
}

   2.终止线程

线程可以通过以下方式终止:

  • 从线程函数返回,返回值是线程的退出码。
  • 被同一进程中的其他线程取消。
  • 调用pthread_exit函数。

四、线程同步与互斥

   1.互斥锁(Mutex)

互斥锁用于保证共享资源在同一时间只能被一个线程访问。

#include <pthread.h>

int pthread_mutex_lock(pthread_mutex_t *mutex);
int pthread_mutex_unlock(pthread_mutex_t *mutex);

   2.条件变量(Condition Variable)

条件变量用于线程间的同步,允许线程在某些条件下挂起或被唤醒。

#include <pthread.h>

int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
int pthread_cond_signal(pthread_cond_t *cond);

五、线程间的通信

        线程间的通信可以通过共享内存、互斥锁、条件变量等方式实现。以下是一个使用互斥锁和条件变量进行线程间通信的例子:

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>

pthread_mutex_t mutex;
pthread_cond_t cond;
int count = 0;

void* producer(void* arg) {
    for (int i = 0; i < 10; ++i) {
        pthread_mutex_lock(&mutex);
        count++;
        printf("Produced %d\n", count);
        pthread_mutex_unlock(&mutex);
        pthread_cond_signal(&cond);
        sleep(1);
    }
    return NULL;
}

void* consumer(void* arg) {
    while (1) {
        pthread_mutex_lock(&mutex);
        if (count == 0) {
            pthread_cond_wait(&cond, &mutex);
        }
        if (count > 0) {
            count--;
            printf("Consumed %d\n", count + 1);
        }
        pthread_mutex_unlock(&mutex);
        if (count == 0) break;
    }
    return NULL;
}

int main() {
    pthread_t prod, cons;

    pthread_mutex_init(&mutex, NULL);
    pthread_cond_init(&cond, NULL);

    pthread_create(&prod, NULL, producer, NULL);
    pthread_create(&cons, NULL, consumer, NULL);

    pthread_join(prod, NULL);
    pthread_join(cons, NULL);

    pthread_mutex_destroy(&mutex);
    pthread_cond_destroy(&cond);

    return 0;
}

六、总结        

        本文详细介绍了C语言中线程编程的基础知识和实践技巧,包括线程的创建、同步、互斥以及线程间的通信。通过掌握这些技术,开发者可以更加高效地利用多核处理器资源,编写高性能的并发程序。在实际应用中,应根据具体场景选择合适的同步机制,确保线程安全。希望本文能够为您的C语言线程编程之旅提供帮助。


http://www.kler.cn/a/302065.html

相关文章:

  • 【包教包会】CocosCreator3.x框架——带翻页特效的场景切换
  • [白月黑羽]关于仿写类postman功能软件题目的解答
  • 将单色像素值转换成灰阶屏的灰度序列的算法
  • React 中如何解析字符串中的 html 结构
  • 【JAVA基础】JVM是什么?
  • React中 修改 html字符串 中某些元素的属性
  • 项目实战 ---- 商用落地视频搜索系统(9)---UI与上层service的交互优化
  • ubuntu2204安装kvm
  • 华为 HCIP-Datacom H12-821 题库 (20)
  • ArmSoM-Sige5 的 RK3576 SoC 主线内核支持进展
  • React 嵌套类名样式不生效
  • CSS 布局技巧实现元素左右排列
  • 使用 Vue 的事件总线:为了实现点击当前按钮关注或取消关注时,另一个页面的 Vue 组件中的表格数据自动刷新
  • PowerShell 脚本自动化 Windows 工作开发流程
  • 论文《Graph Neural Networks with convolutional ARMA filters》笔记
  • 开关电源的占空比与输入输出电压的关系
  • 更改PaddlePaddle的模型默认缓存目录
  • Anaconda下载及安装保姆级教程(详细图文)
  • 基于Java+SpringBoot+Vue+MySQL的西安旅游管理系统网站
  • 办海洋测绘乙级该如何准备才能万无一失办下来
  • 2.3.1 协程设计原理与汇编实现coroutine 2
  • 路径规划 | 基于A*算法的往返式全覆盖路径规划的改进算法(Matlab)
  • 【西电电装实习】6. 手装无人机的蓝牙断连debug
  • 【linux006】目录操作命令篇 - pwd 命令
  • vue3 自定义指令 directive
  • CSS-3