我正在使用
cocoa框架帮助编写一个用
objective-c编写的小应用程序,我遇到了多线程问题.
如果有人可以帮我提供一些关于如何从主线程终止辅助(工作者)线程的指导,我真的很感激吗?
如果有人可以帮我提供一些关于如何从主线程终止辅助(工作者)线程的指导,我真的很感激吗?
- (IBAction)startWorking:(id)sender { [NSThread detachNewThreadSelector:@selector(threadMain:) toTarget:self withObject:nil]; } - (void)threadMain { // do a lot of boring,time consuming I/O here.. } - (IBAction)stop:(id)sender { // what now? }
我在apple’s docs上找到了一些东西但是这个例子中缺少的是runloop输入源改变exitNow值的部分.
此外,我不会在我的应用程序中使用很多线程,所以我更喜欢一个简单的解决方案(开销较少)而不是一个能够轻松管理多个线程的更复杂的解决方案,但产生更多开销(例如使用锁定)也许(?)而不是runloops)
提前致谢
解决方法
我认为最简单的方法是使用NSThread的
-(void)cancel method.您还需要引用您创建的线程.如果您可以将工作线程作为循环执行,那么您的示例代码将看起来像这样:
- (IBAction)startWorking:(id)sender { myThread = [[NSThread alloc] initWithTarget:self selector:@selector(threadMain:) object:nil]; [myThread start]; } - (void)threadMain { while(1) { // do IO here if([[NSThread currentThread] isCancelled]) break; } } - (IBAction)stop:(id)sender { [myThread cancel]; [myThread release]; myThread = nil; }
当然,这只会取消循环迭代之间的线程.所以,如果你正在进行一些长时间的阻塞计算,你必须找到一种方法将它分解成碎片,这样你就可以定期检查isCancelled.