基本概念
進(jìn)程:進(jìn)程是指在系統(tǒng)中正在運(yùn)行的一個(gè)應(yīng)用程序。每個(gè)進(jìn)程之間是獨(dú)立的,每個(gè)進(jìn)程均運(yùn)行在其專用且受保護(hù)的內(nèi)存空間內(nèi)。
線程:1個(gè)進(jìn)程要想執(zhí)行任務(wù)查剖,必須得有線程(每1個(gè)進(jìn)程至少要有1條線程),線程是進(jìn)程的基本執(zhí)行單元噪窘,一個(gè)進(jìn)程(程序)的所有任務(wù)都在線程中執(zhí)行。
串行:在一個(gè)線程中執(zhí)行多個(gè)任務(wù)效扫,并且只能一個(gè)一個(gè)順序執(zhí)行
并發(fā):在一個(gè)線程中多個(gè)任務(wù)同時(shí)執(zhí)行倔监。
同步:只能在當(dāng)前線程中執(zhí)行任務(wù),不具備開啟新線程的能力
異步:可以在新的線程中執(zhí)行任務(wù)菌仁,具備開啟新線程的能力
多線程:一個(gè)進(jìn)程中可以開啟多個(gè)線程浩习,每條線程可以并發(fā)(同時(shí))執(zhí)行不同任務(wù)
多線程的原理
同一時(shí)間,CPU只能處理1條線程济丘,只有1條線程在工作(執(zhí)行)
多線程并發(fā)(同時(shí))執(zhí)行谱秽,其實(shí)是CPU快速地在多條線程之間調(diào)度(切換)
如果CPU調(diào)度線程的時(shí)間足夠快,就造成了多線程并發(fā)執(zhí)行的假象
思考:如果線程非常非常多摹迷,會(huì)發(fā)生什么情況疟赊?
CPU會(huì)在N多線程之間調(diào)度,CPU會(huì)累死峡碉,消耗大量的CPU資源
每條線程被調(diào)度執(zhí)行的頻次會(huì)降低(線程的執(zhí)行效率降低)
基礎(chǔ)使用
@property (readonly) BOOL isMainThread;
@property (class, readonly) BOOL isMainThread
- (void)viewDidLoad {
[super viewDidLoad];
NSThread *mainThread = [NSThread mainThread];
NSThread *currentThread = [NSThread currentThread];
//判斷是否是主線程
BOOL isMainThread = [NSThread currentThread].isMainThread;
isMainThread = [NSThread isMainThread];
}
開啟新的線程
線程的生命周期:當(dāng)線程中的任務(wù)執(zhí)行完畢后被釋放
//方式1
NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(gotoLoad:) object:@"lxx"];
[thread start];
//方式2
[NSThread detachNewThreadSelector:@selector(gotoLoad:) toTarget:self withObject:@"dxx"];
//方式3
[self performSelectorInBackground:@selector(gotoLoad:) withObject:@"lmy"];
下載圖片
- (void)showImg {
NSString *url = @"www.xxxxx";
NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(downloadImgFromURL:) object:url];
thread.threadPriority = 0.8;//設(shè)置優(yōu)先級(jí):0-1
[thread start];
}
- (void)downloadImgFromURL:(NSString *)URL {
NSData *data = [[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:URL]];
UIImage *img = [[UIImage alloc]initWithData:data];
if (img) {//拿到數(shù)據(jù)近哟,回主線程刷新UI
//方式1:
//第三個(gè)參數(shù):是否等待
[self performSelectorOnMainThread:@selector(updateUI:) withObject:img waitUntilDone:YES];
//方式2:
[self performSelector:@selector(updateUI:) onThread:[NSThread mainThread] withObject:image waitUntilDone:YES];
}
}
- (void)updateUI:(UIImage *)img {
}
//方式3:簡(jiǎn)單方式
//通過imageVIew來調(diào)用他的set方法來實(shí)現(xiàn)少寫一步的操作
[imageView performSelector:@selector(setImage:) onThread:[NSThread mainThread] withObject:image waitUntilDone:YES];
控制線程狀態(tài)
線程的各種狀態(tài):新建-就緒-運(yùn)行-阻塞-死亡
線程的狀態(tài):就緒狀態(tài)(Runnable) 阻塞狀態(tài)(Blocked)運(yùn)行狀態(tài)(Running)
[thread start];
- (void)gotoLoad:(NSString *)parm {
NSLog(@"----%@,%@",parm,[NSThread currentThread]);
[NSThread sleepForTimeInterval:2];//阻塞線程2秒
[NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
[NSThread exit];//強(qiáng)制退出當(dāng)前線程
}
計(jì)算耗時(shí)操作的時(shí)間差
//方式1
CFTimeInterval start = CFAbsoluteTimeGetCurrent();
CFTimeInterval end = CFAbsoluteTimeGetCurrent();
NSLog(@"%f",end - start);
//方式2:
NSDate *startDate = [NSDate date];
NSDate *endDate = [NSDate date];
NSTimeInterval time = [endDate timeIntervalSinceDate:startDate];
互斥鎖使用格式
@synchronized(鎖對(duì)象) { // 需要鎖定的代碼 } 注意:鎖定1份代碼只用1把鎖,用多把鎖是無效的
互斥鎖的優(yōu)缺點(diǎn)
優(yōu)點(diǎn):能有效防止因多線程搶奪資源造成的數(shù)據(jù)安全問題
缺點(diǎn):需要消耗大量的CPU資源
互斥鎖的使用前提:多條線程搶奪同一塊資源
線程同步
線程同步的意思是:多條線程在同一條線上執(zhí)行(按順序地執(zhí)行任務(wù))
互斥鎖鲫寄,就是使用了線程同步技術(shù)
OC在定義屬性時(shí)有nonatomic和atomic兩種選擇
atomic:原子屬性吉执,為setter方法加鎖(默認(rèn)就是atomic)
nonatomic:非原子屬性,不會(huì)為setter方法加鎖