博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS多线程
阅读量:6293 次
发布时间:2019-06-22

本文共 1130 字,大约阅读时间需要 3 分钟。

进程:一个正在运行的程序看作进程,它拥有独立运行所需的全部资源。(正在运行的qq)

线程:程序中独立运行的代码段。(接收qq消息的代码)

开辟一个主线程占1M,开辟一个子线程512kb。

//thread_1回调方法- (void)thread_1Action:(NSString *)sender{    //当子线程是我们手动开辟的,那么就需要我们自己来管理内存    @autoreleasepool {        NSLog(@"thread_1_Info%@",[NSThread currentThread]);        NSLog(@"参数:%@",sender);    }}- (void)thread_2Action{    @autoreleasepool {        NSLog(@"Thread_2--%@",[NSThread currentThread]);    }    }- (void)thread_3Action{    @autoreleasepool {        NSLog(@"Thread_3333--%@",[NSThread currentThread]);    }    }//nsthread 学习-(void)threadStudy{    //通过便利构造器的方式创建thread对象,不用手动启动    [NSThread detachNewThreadSelector:@selector(thread_1Action:) toTarget:self withObject:@"thread_1"];    //通过alloc方式创建    NSThread *thread_2 = [[NSThread alloc] initWithTarget:self selector:@selector(thread_2Action) object:nil];    thread_2.name = @"Thread_2";    [thread_2 start];    thread_2.threadPriority = 1.0;        NSThread *thread_3 = [[NSThread alloc] initWithTarget:self selector:@selector(thread_3Action) object:nil];    thread_3.name = @"thread_3";    [thread_3 start];    }

 

转载于:https://www.cnblogs.com/ios988/p/5291162.html

你可能感兴趣的文章
《从零开始学Swift》学习笔记(Day 51)——扩展构造函数
查看>>
python多线程队列安全
查看>>
[汇编语言学习笔记][第四章第一个程序的编写]
查看>>
android 打开各种文件(setDataAndType)转:
查看>>
补交:最最原始的第一次作业(当时没有选上课,所以不知道)
查看>>
Vue实例初始化的选项配置对象详解
查看>>
PLM产品技术的发展趋势 来源:e-works 作者:清软英泰 党伟升 罗先海 耿坤瑛
查看>>
vue part3.3 小案例ajax (axios) 及页面异步显示
查看>>
浅谈MVC3自定义分页
查看>>
.net中ashx文件有什么用?功能有那些,一般用在什么情况下?
查看>>
select、poll、epoll之间的区别总结[整理]【转】
查看>>
CSS基础知识(上)
查看>>
PHP中常见的面试题2(附答案)
查看>>
26.Azure备份服务器(下)
查看>>
mybatis学习
查看>>
LCD的接口类型详解
查看>>
Spring Boot Unregistering JMX-exposed beans on shutdown
查看>>
poi 导入导出的api说明(大全)
查看>>
Mono for Android 优势与劣势
查看>>
将图片转成base64字符串并在JSP页面显示的Java代码
查看>>