NSThread相关

参考:http://blog.csdn.net/linzhiji/article/details/6848652

------------------------

1.经典的ticket thread

注:@synchronized() 与 线程锁的关系

//
//  TicketSeller.h
//  UpperTestView
//
//  Created by fengshaobo on 12-9-24.
//  Copyright (c) 2012年 Maxthon. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface TicketSeller : NSObject
{
    int tickets;
    int count;
}

@property (nonatomic, retain) NSThread* ticketsThreadone;
@property (nonatomic, retain) NSThread* ticketsThreadtwo;
@property (nonatomic, retain) NSCondition* ticketsCondition;

- (void)startTicketThread;

@end

.m

//
//  TicketSeller.m
//  UpperTestView
//
//  Created by fengshaobo on 12-9-24.
//  Copyright (c) 2012年 Maxthon. All rights reserved.
//

#import "TicketSeller.h"

#define SYNCHRONIZED 1

@implementation TicketSeller
@synthesize ticketsCondition, ticketsThreadone, ticketsThreadtwo;

- (id)init
{
    self = [super init];
    if(self){
        
    }
    return self;
}

- (void)dealloc
{
    [ticketsThreadone release];
    [ticketsThreadtwo release];
    [ticketsCondition release];
    [super dealloc];
}

- (void)startTicketThread
{
    tickets = 100;
    count = 0;
    
    // 锁对象
    NSCondition *tmpCondition = [[NSCondition alloc] init];
    self.ticketsCondition = tmpCondition;
    [tmpCondition release];
    
    NSThread *threadOne = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];
    [threadOne setName:@"Thread-1"];
    self.ticketsThreadone = threadOne;
    [threadOne release];
    [self.ticketsThreadone start];
    
    NSThread *threadTwo = [[NSThread alloc] initWithTarget:self selector:@selector(run) object:nil];
    [threadTwo setName:@"Thread-2"];
    self.ticketsThreadtwo = threadTwo;
    [threadTwo release];
    [self.ticketsThreadtwo start];
}





/* --------------------------------------------------
 1.不上锁:
 2012-09-24 16:18:32.220 UpperTestView[3455:3c03] 当前票数是:100,售出:0,线程名:Thread-2
 2012-09-24 16:18:32.220 UpperTestView[3455:3703] 当前票数是:100,售出:0,线程名:Thread-1
 2012-09-24 16:18:32.722 UpperTestView[3455:3703] 当前票数是:98,售出:2,线程名:Thread-1
 2012-09-24 16:18:32.722 UpperTestView[3455:3c03] 当前票数是:98,售出:2,线程名:Thread-2
 2012-09-24 16:18:33.224 UpperTestView[3455:3c03] 当前票数是:96,售出:4,线程名:Thread-2
 2012-09-24 16:18:33.224 UpperTestView[3455:3703] 当前票数是:96,售出:4,线程名:Thread-1
 
 2.@synchronized / 上锁后 :
 2012-09-24 16:19:46.598 UpperTestView[3484:3703] 当前票数是:100,售出:0,线程名:Thread-1
 2012-09-24 16:19:47.100 UpperTestView[3484:3c03] 当前票数是:99,售出:1,线程名:Thread-2
 2012-09-24 16:19:47.602 UpperTestView[3484:3703] 当前票数是:98,售出:2,线程名:Thread-1
 2012-09-24 16:19:48.103 UpperTestView[3484:3c03] 当前票数是:97,售出:3,线程名:Thread-2
 2012-09-24 16:19:48.604 UpperTestView[3484:3703] 当前票数是:96,售出:4,线程名:Thread-1
 2012-09-24 16:19:49.106 UpperTestView[3484:3c03] 当前票数是:95,售出:5,线程名:Thread-2
 -------------------------------------------------- */
- (void)run{
    while (TRUE) {
        
#if SYNCHRONIZED
        
        // 方法-:@synchronized
        @synchronized(self){
            if(tickets > 0){
                [NSThread sleepForTimeInterval:0.5];
                count = 100 - tickets;
                NSLog(@"当前票数是:%d,售出:%d,线程名:%@",tickets,count,[[NSThread currentThread] name]);
                tickets--;
            }else{
                break;
            }
        }
        
        /* --------------------------------------------------
         note:
         @synchronized(self)
         保证此时没有其他线程对self对象进行修改
         
         The @synchronized directive is a convenient way to create mutex locks on the fly in Objective-C code. The @synchronized directive does what any other mutex lock would do—it prevents different threads from acquiring the same lock at the same time. In this case, however, you do not have to create the mutex or lock object directly. Instead, you simply use any Objective-C object as a lock token, as shown in the following example:
         
         - (void)myMethod:(id)anObj
         {
             @synchronized(anObj)
             {
                // Everything between the braces is protected by the @synchronized directive.
             }
         }
         
         The object passed to the @synchronized directive is a unique identifier used to distinguish the protected block. If you execute the preceding method in two different threads, passing a different object for the anObj parameter on each thread, each would take its lock and continue processing without being blocked by the other. If you pass the same object in both cases, however, one of the threads would acquire the lock first and the other would block until the first thread completed the critical section.
         
         As a precautionary measure, the @synchronized block implicitly adds an exception handler to the protected code. This handler automatically releases the mutex in the event that an exception is thrown. This means that in order to use the @synchronized directive, you must also enable Objective-C exception handling in your code. If you do not want the additional overhead caused by the implicit exception handler, you should consider using the lock classes.
         -------------------------------------------------- */
#else 
        
        // 方法二:上锁
        [ticketsCondition lock];
        if(tickets > 0){
            [NSThread sleepForTimeInterval:0.5];
            count = 100 - tickets;
            NSLog(@"当前票数是:%d,售出:%d,线程名:%@",tickets,count,[[NSThread currentThread] name]);
            tickets--;
        }else{
            break;
        }
        [ticketsCondition unlock];
        
#endif

    }
}

@end



2.未完待续,仔细研究 NSOperationQueue,再补充


3.问题:

  -》线程 start以后,如何取消,试了cancle,exit都没用,都一直在运行,好像一开始就停不下来了。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值