Objecttive-c Creating multithreading

Source: Internet
Author: User

There are two ways to create multithreading in Objecttive-c, one is Initwithtarget, and the other is detachnewthreadselector.

Here are two instances, creating a multithreaded instance that supports passing parameters.

Initwithtarget Way

  main.m//  initwithtarget//  Created by exchen on 5/8/15.//  Copyright (c) exchen. All rights reserved.//#import <Foundation/Foundation.h> @interface classa:nsobject-(void) Startthread: ( NSString *) str; @end @implementation classa-(void) Startthread: (NSString *) str{     sleep (3);        NSLog (str);       Exit (0);} @endint 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 Way

  main.m//  testthread////  Created by exchen on 5/8/15.//  Copyright (c) exchen. All rights reserved.//#import <Foundation/Foundation.h> @interface classa:nsobject-(void) Startthread: ( NSString *) str; @end @implementation classa-(void) Startthread: (NSString *) str{    NSLog (@ "%@", str);    Exit (0);} @endint 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;}


Objecttive-c Creating multithreading

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.