#import "NSThreadState.h"
@interface NSThreadState ()
@end
@implementation NSThreadState
- (void)viewDidLoad {
[super viewDidLoad];
//Pthread NSThread 是多线程 GCD NSOperation 并发线程
//可调度线程池
/*
线程几种状态
1.新建状态
2.就绪状态 (在可调度线程池)
3.运行状态
4.阻塞状态(sleep和同步锁)
5.死亡状态
*/
}
-(void)touchesBegan:(NSSet