程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> Objecttive-C 創建多線程

Objecttive-C 創建多線程

編輯:關於C語言

Objecttive-C 創建多線程


在Objecttive-C裡創建多線程一般有兩種方法, 一種是initWithTarget,還有一種是detachNewThreadSelector。

下面是兩個實例,創建多線程的實例,支持傳遞參數.

 

initWithTarget方式

 

//
//  main.m
//  initWithTarget
//  Created by exchen on 5/8/15.
//  Copyright (c) 2015 exchen. All rights reserved.
//

#import 

@interface classa : NSObject

-(void)StartThread:(NSString *)str;

@end

@implementation classa

-(void)StartThread:(NSString *)str
{ 
    sleep(3);
    
    NSLog(str);
   
    exit(0);
}

@end

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // insert code here...
        NSLog(@"Hello, World!");
    }
    
    classa *a = [[classa alloc] init];
    NSThread *thread = [[NSThread alloc] initWithTarget:a selector:@selector(StartThread:) object:@"Start"];
    [thread start];
    
    sleep(5);
    return 0;
}

detachNewThreadSelector方式

 

//
//  main.m
//  TestThread
//
//  Created by exchen on 5/8/15.
//  Copyright (c) 2015 exchen. All rights reserved.
//
#import 

@interface classa : NSObject

-(void)StartThread:(NSString *)str;

@end

@implementation classa

-(void)StartThread:(NSString *)str
{
    NSLog(@"%@",str);
    exit(0);
}

@end

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // insert code here...
        NSLog(@"Hello, World!");
        
        classa *a = [[classa alloc] init];
        
        [NSThread detachNewThreadSelector:@selector(StartThread:) toTarget:a withObject:@"Start"];
        
        sleep(5);
        
    }
    return 0;
}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved