多线程 NSthread

1.获取主线程方法:

    NSThread *mainT = [NSThread mainThread];

    NSLog(@"主线程:%@",mainT);

    显示结果:{name = (null),num = 1}

请记住:num = 1,才是主线程。num 相当于线程的ID。

2.获取当前线程方法:

    NSThread *currentT = {NSThread currentThread];

3.创建线程:

    使用方法:- (id)initWithTarget:(id)target selector:(SEL)selector object:(id)argument;

   (1)创建方法:NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(runThread:) object:@"run"];

          [thread start];   //开启线程


                -(void)runThread:(NSString *)string{

                    NSThread *currentT = [NSThread currentThread];    //当前线程

                    NSLog(@"执行runThread:方法,参数%@,当前线程:%@",string,currentT);   //打印当前线程参数

                }

   结果:执行runThread:方法,参数run,当前线程{name = (null),num = 3}

  num值为3,不是主线程,主线程num值为1.

   (2)+ (void)detachNewThreadSelector:(SEL)selector toTarget:(id)target withObject:(id)argument;静态方法获取线程

   [NSThread detachNewThreadSelector:@selector(runThread:) toTarget:self withObject:@"run"]; 调用方法(启动一个新的线程,调用self的runThread:方法,以run为参数)

    (3)[self performSelectorInBackground:@selector(runThread:) withObject:@"run"]; 隐式创建线程 


4.暂停当前线程:

  (1)[NSThread sleepForTimeInterval:5];   //快捷方法暂停5   

  (2)NSDate *date = [NSDate dateWithTimeInterval:5 sinceDate:[NSDate date]];

          [NSThread sleepUntilDate:date];      //另一种方法暂停5


5.在线程上的其他操作:

  (1)在主线程上的执行操作:

      [self performSelectorOnMainThread:@selector(runThread:) withObject:nil waitUntilDone:YES];     //在主线程上调用 runThread:方法

   (2)在当前线程执行操作:

      [self performSelector:@selector(runThread:) withObject:nil];   //在当前线程调用runThread:方法

   (3)在指定线程执行操作:

 [self performSelector:@selector(runThread:) onThread:myThread withObject:nil waitUntilDone:YES]; //myThread线程上调用 runThread:方法  YES runThread:方法执行完毕才会继续往下执行其他代码

6.Thread线程更直观控制线程对象,需要管理线程的生命周期,线程同步。线程同步对数据的加锁会占用系统一定的内存。







     

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值