iOS 개발 다중 스레드(1)
, 。
, ( ) , 。
1 。
1 , ( ) 。
,CPU , 1 ( )。
> ( ) , CPU ( )。
CPU , 。
다중 스레드 구현 방식
1. API
2. Unix\Linux\Windows
3. \
4.
1. GCD( GCD)
2. GCD
3.
NSOperation은 캡슐화 작업을 수행할 수 있는 능력이 없으며 그의 하위 클래스를 사용해야 합니다.
NSOperation 하위 클래스를 사용하는 3가지 방법
2.NSThread
// 1:
NSThread *thread = [[NSthread alloc] initWithTarget:self selectot:@selectot(run) object:nil];
[thread start];
// 2:
[NSthread detachNewThreaSelectot:@selectot(run) toTarget:self withObject:nil];
// 3:
[self performSelectInBackground:@selector(run) withObject:nil];
+ (NSThread *)mainThread; //
- (BOOL)isMainThread; //
+ (BOOL)isMainThread; //
+ (NSThread *)currentThread; //
//
+ (double)threadPriorty;
+ (BOOL)setThreadPriorty:(double)p;
-(double)threadPriorty;
- (BOOL)setThreadPriorty:(double)p;
// 0.0~1.0, 0.5, , 。
//
- (void)setName:(NSString *)n;
- (NSString *)name;
//
- (void)start;
// -> 。 , 。
// ( )
+ (void)sleepUntilDate:(NSDate *)date;
+ (void)sleepForTimeInterval:(NSTimeInterval)ti;
//
//
+ (void)exit;
//
** ** ( ) ,
3. GCD(Grand Central Dispatch)
큐의 실행 순서 FIFO(먼저 나가기)
몇 가지 조합 상황
4. NSOperation
NSOperation 하위 클래스를 사용하는 3가지 방법
NSOperationQueue의 고급 사용 방법
1. 2
queue.maxConcurrentOperationCount = 2;
2. ( )
【operationB addDependency:operationA];
【operationC addDependency:operationB];
3.
- (void)cancelAllOperations;
// NSOperation - (void)cancel
4.
- (void) setSuspended:(BOOL)b;//YES ,NO
5.
[NSOperationQueue mainQueue];
// ,
6.
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
//
}];
NSOperation 사용자 지정
NSOperation
- (void)main ,
- (void)main
( , )
- (BOOL)isCancelled ,
4. 다중 스레드와 잠금
다중 스레드의 위험
솔루션: 잠금(추가 보완)
@synchronized( ){
//
}
** :** 1 ,
상호 배척 자물쇠의 장단점:
장점: 다중 스레드로 인한 자원 강탈로 인한 데이터 안전 문제를 효과적으로 방지할 수 있다
단점: 대량의 CUP 리소스를 폐기해야 함
상호 배척 자물쇠의 사용 전제: 여러 라인이 같은 자원을 빼앗는다
스레드 간 통신
// , UI ( )
1.[self performSelectorOnMainThread:@selector(downloadFinished:) withObject:image waitUntilDone:NO];
2.[self performSelector:@selector(downloadFinished:) onThread:[NSThread mainThread] withObject:image waitUntilDone:YES];
[self.imageView performSelectorOnMainThread:@selector(setImage:) withObject:image waitUntilDone:YES];
: waitUntilDone
//GCD
disptach_async(dispatch_get_main_queue(),^{
//
})
//NSOperationQueue
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
//
}];
시간을 끌다
// sleep, :
1. [NSThread sleepForTimeInterval:3];
// ,
2. [self performSelector:@selector(download:) withObject:@"http://555.jpg" afterDelay:3];
// 3 block
3. dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), queue, ^{
NSLog(@"------task------%@", [NSThread currentThread]);
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.