zoukankan      html  css  js  c++  java
  • 多线程技术

    多线程: 串行->针对一个线程中有多个任务,按顺序执行。

       并行->多个线程的执行情况,同时执行。

    多线程优点: 提高程序的性能

    缺点:  需要开销,程序更加复杂。

     

    多线程技术方案: pthread 适用于unix, Linux, Windows,可跨平台

    NSThread 面向对象,简单易用

    GCD 充分利用设备的多核,旨在替代NSThread等线程技术

    NSOperation 基于GCD底层是 GCD,比GCD 多了一些简单实用的功能。

     

    pthread使用:

     

    //创建线程

    pthread_t thread = nil;

    pthread_create(&thread, NULL, run, NULL);

     

     

    void * _Nullable run(void * _Nullable param){

     

    //执行耗时操作,放在这个方法

        NSLog(@"%@",[NSThread currentThread]);

        

        return NULL;

    }

     

    NSThread 使用:(创建线程的几种方法)

     1, 

         NSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(runOnBackgroundThread) object:nil];

        [thread start];

    2,

    [NSThread detachNewThreadWithBlock:^{

            NSLog(@"%@",[NSThread currentThread]);

            NSLog(@"耗时操作");

        }];

    3,

    [NSThread detachNewThreadSelector:@selector(runOnBackgroundThread) toTarget:self withObject:nil];

     

    4,

    [self performSelectorInBackground:@selector(runOnBackgroundThread) withObject:nil];

     

    设置线程的属性:

     

         thread.threadPriority = 1.0;  //设置线程的优先级,  从0到1, 优先级越高, 被CPU调到的概率越大。

        thread.name = @"线程1"; //设置线程的名称

    线程的生命周期 : 当线程内任务执行完毕后会被释放。

  • 相关阅读:
    获取iframe中的元素
    用npm安装express后express命令找不到
    Openfire 单人聊天和多人聊天(发送消息、接收消息)
    openfire拦截数据包与发送广播
    xmpp with openfire 插件-利用Broadcast实现群
    Smack 结合 Openfire服务器,建立IM通信,发送聊天消息
    openfire默认数据库与应用系统数据库整合
    ios即时通讯客户端开发之-mac上安装MySQL
    ios即时通讯客户端开发之-mac上搭建openfire服务器
    IOS block使用中碰到的一个小坑
  • 原文地址:https://www.cnblogs.com/dashengios/p/10370827.html
Copyright © 2011-2022 走看看