多种方法实现两个线程交替打印奇偶数

本文详细介绍了三种实现线程交替打印奇偶数的方法:1) 使用`synchronized`同步锁和`wait`,`notify`线程通信;2) 利用标志位控制打印顺序;3) 不加锁,通过`while`循环和`boolean`标识位实现。每种方式都确保了线程安全和交替打印的正确性。
摘要由CSDN通过智能技术生成

交替打印奇偶数

问题描述:

  •  构造两个线程,交替打印1-100之间的数字,其中线程1打印奇数,线程2打印偶数。 
    

方式1:采用synchronized同步锁和wait,notify线程通信机制来实现。

public class jiaotidayinshuzi {
    public static void main(String[] args){
        PrintNum p=new PrintNum();
        Thread td1=new Thread(p);
        Thread td2=new Thread(p);
        td1.setName("线程1");
        td2.setName("线程2");
        td1.start();
        td2.start();
    }
}
//定义打印函数,通过wait()和notify()交替打印奇偶数
class PrintNum implements Runnable{
    int num=1;
    @Override
    public void run() {
        synchronized (this){
            while (true){
                notify();//唤醒wait()的一个或者所有的线程
                if (num<=100){
                    System.out.println(Thread.currentThread().getName()+":"+num);
                    num+
以下是使用 POSIX 线程实现的 Linux 双线程交替打印奇偶的示例代码: ```c #include <stdio.h> #include <pthread.h> pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; // 初始化互斥锁 pthread_cond_t cond = PTHREAD_COND_INITIALIZER; // 初始化条件变量 int count = 0; // 打印器 void *print_even(void *arg) { while (count <= 10) { pthread_mutex_lock(&mutex); // 加锁 if (count % 2 == 0) { // 判断是否为偶 printf("even thread: %d\n", count); count++; pthread_cond_signal(&cond); // 发送信号 } else { pthread_cond_wait(&cond, &mutex); // 等待信号 } pthread_mutex_unlock(&mutex); // 解锁 } pthread_exit(NULL); } void *print_odd(void *arg) { while (count <= 10) { pthread_mutex_lock(&mutex); // 加锁 if (count % 2 == 1) { // 判断是否为奇 printf("odd thread: %d\n", count); count++; pthread_cond_signal(&cond); // 发送信号 } else { pthread_cond_wait(&cond, &mutex); // 等待信号 } pthread_mutex_unlock(&mutex); // 解锁 } pthread_exit(NULL); } int main() { pthread_t tid1, tid2; pthread_create(&tid1, NULL, print_even, NULL); // 创建偶线程 pthread_create(&tid2, NULL, print_odd, NULL); // 创建奇线程 pthread_join(tid1, NULL); // 等待线程结束 pthread_join(tid2, NULL); pthread_mutex_destroy(&mutex); // 销毁互斥锁 pthread_cond_destroy(&cond); // 销毁条件变量 return 0; } ``` 上述代码中,我们使用了互斥锁和条件变量来实现线程间的同步和通信。其中,互斥锁用来保护打印器 `count` 的访问,条件变量用来等待和发送信号。在偶线程中,如果当前的 `count` 为偶,则打印并将 `count` 加 1,并发送信号通知奇线程;否则等待奇线程发送信号。在奇线程中,如果当前的 `count` 为奇,则打印并将 `count` 加 1,并发送信号通知偶线程;否则等待偶线程发送信号。最后,我们使用 `pthread_join` 函等待两个线程结束,并销毁互斥锁和条件变量。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值