iOS实现两个线程交替打印奇数和偶数

-    iOS实现两个线程交替打印奇数和偶数

```

NSThread*threadA = [[NSThreadalloc]initWithTarget:selfselector:@selector(threadAPrint3)object:nil];

```

NSThread*threadA = [[NSThreadalloc]initWithTarget:selfselector:@selector(threadAPrint3)object:nil];

    [threadAstart];

    NSThread*threadB = [[NSThreadalloc]initWithTarget:selfselector:@selector(threadBPrint3)object:nil];

    [threadBstart];

方法一: 采用两个信号量

// 信号量

- (void)threadAPrint3 {

    for(inti =0; i <100; i++) {

        dispatch_semaphore_wait(self.sema1, DISPATCH_TIME_FOREVER);

        NSLog(@"%d, %@",self.index3, [NSThreadcurrentThread]);

        self.index3=self.index3+1;

        sleep(1);

        dispatch_semaphore_signal(self.sema2);

    }

}

// 信号量

- (void)threadBPrint3 {

    for(inti =0; i <100; i++) {

        dispatch_semaphore_wait(self.sema2, DISPATCH_TIME_FOREVER);

        NSLog(@"%d, %@",self.index3, [NSThreadcurrentThread]);

        self.index3=self.index3+1;

        sleep(1);

        dispatch_semaphore_signal(self.sema1);

    }

}

方法2: 采用NSCondition

- (void)threadAPrint {

    for(inti =0; i <100; i++) {

        [self.conditionLocklock];

        if((self.index&1) ==1) {

            NSLog(@"%d, %@",self.index, [NSThreadcurrentThread]);

            [self.conditionLocksignal];

            [self.conditionLockwait];

        }

        self.index=self.index+1;

        sleep(1);

        [self.conditionLockunlock];

    }

}

- (void)threadBPrint {

    for(inti =0; i <100; i++) {

        [self.conditionLocklock];

        if((self.index&1) ==0) {

            NSLog(@"%d, %@",self.index, [NSThreadcurrentThread]);


            [self.conditionLocksignal];

            [self.conditionLockwait];

        }

        self.index=self.index+1;

        sleep(1);

        [self.conditionLockunlock];

    }

}

方法三: 采用NSConditionLock

- (void)threadAPrint2 {

    for(inti =0; i <100; i++) {

        [self.conditionLock2 lockWhenCondition:1];

        self.index=self.index+1;

        NSLog(@"%d, %@",self.index, [NSThreadcurrentThread]);

        sleep(1);

        [self.conditionLock2 unlockWithCondition:0];

    }

}

- (void)threadBPrint2 {

    for(inti =0; i <100; i++) {

        [self.conditionLock2 lockWhenCondition:0];

        self.index=self.index+1;

        NSLog(@"%d, %@",self.index, [NSThreadcurrentThread]);

        sleep(1);

        [self.conditionLock2 unlockWithCondition:1];

    }

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容