多線程開發之NSThrea,多線程nsthrea

來源:互聯網
上載者:User

多線程開發之NSThrea,多線程nsthrea

建立並啟動

先建立線程,再啟動

// 建立    NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run:) object:nil];    // 啟動    [thread start];  建立並啟動[NSThread detachNewThreadSelector:@selector(run:) toTarget:self withObject:nil];

隱式建立並啟動

[self performSelectorInBackground:@selector(run:) withObject:@"mj"]; 

其他方法

在指定線程上執行操作

[self performSelector:@selector(run) onThread:thread withObject:nil waitUntilDone:YES]; 

上面代碼的意思是在thread這條線程上調用self的run方法

 最後的YES代表:上面的代碼會阻塞,等run方法在thread線程執行完畢後,上面的代碼才會通過

在主線程上執行操作

[self performSelectorOnMainThread:@selector(run) withObject:nil waitUntilDone:YES];  

在當前線程執行操作

[self performSelector:@selector(run) withObject:nil]; 

//取消線程 - (void)cancel; //啟動線程 - (void)start; //判斷某個線程的狀態的屬性 @property (readonly, getter=isExecuting) BOOL executing; @property (readonly, getter=isFinished) BOOL finished; @property (readonly, getter=isCancelled) BOOL cancelled; //設定和擷取線程名字 -(void)setName:(NSString *)n; -(NSString *)name; //擷取當前線程資訊 + (NSThread *)currentThread; //擷取主線程資訊 + (NSThread *)mainThread; //使當前線程暫停一段時間,或者暫停到某個時刻 + (void)sleepForTimeInterval:(NSTimeInterval)time; + (void)sleepUntilDate:(NSDate *)date;  優缺點:優點:NSThread比其他多線程方案較輕量,更直觀地控制線程對象缺點:需要自己管理線程的生命週期,線程同步。線程同步對資料的加鎖會有一定的系統開銷  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.