91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS中多線程的示例分析

發布時間:2022-03-03 14:02:02 來源:億速云 閱讀:429 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關iOS中多線程的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

一、iOS的三種多線程技術

1、NSThread

–優點:NSThread 比其他兩個輕量級,使用簡單

–缺點:需要自己管理線程的生命周期、線程同步、加鎖、睡眠以及喚醒等。線程同步對數據的加鎖會有一定的系統開銷

2、NSOperation

不需要關心線程管理,數據同步的事情,可以把精力放在自己需要執行的操作上

3、GCD

基于C語言的

二、基本使用

NSThread的基本使用

方式一:

//        block
        let thread =  Thread.init {
                print("1、----this is thread \(Thread.current) ")
        }
        thread.start()

方式二:

//        SEL
        let thread2 = Thread.init(target: self, selector: #selector(text), object: nil)
        thread2.start()
@objc func text(){
        print("2、----this is thread \(Thread.current) ")
    }

方式三:\

 self.performSelector(inBackground: #selector(text2), with: nil)

輸出

iOS中多線程的示例分析

tips:可以給任意一個線程增加延遲看看

   print(thread.isCancelled)//是否取消
   print(thread.isExecuting)//是否在執行
   print(thread.isFinished)//是否完成
   print(thread.isMainThread)//是否是主線程

NSOperation的基本使用

方式一:

  let queue = OperationQueue.init()
//     最大線程數
        queue.maxConcurrentOperationCount = 2
        queue.addOperation {
            sleep(1)
            print("1111")
        }
        queue.addOperation {
            print("2222")
        }

輸出結果如下:

iOS中多線程的示例分析

方式二:可設置優先級

let queue = OperationQueue.init()
      	let op =  BlockOperation.init {
            print("op")
        }
        op.queuePriority = .normal //設置優先級
        queue.addOperation(op)
        let op2 = BlockOperation.init {
            print("op2")
        }
        op2.queuePriority = .normal
        queue.addOperation(op2)
        
        queue.addOperation {
            print("op3")
        }

iOS中多線程的示例分析

略作修改

let queue = OperationQueue.init()
        let op =  BlockOperation.init {
            sleep(1)
            print("op")
        }
        op.queuePriority = .normal //設置優先級
        queue.addOperation(op)
        let op2 = BlockOperation.init {
            sleep(1)
            print("op2")
        }
        op2.queuePriority = .veryHigh
        queue.addOperation(op2)
        
        queue.addOperation {
            print("op3")
        }

輸出如下:

iOS中多線程的示例分析

優先級如下:

iOS中多線程的示例分析

GCD的基本使用

方式一:queue.async 異步

   let queue =   DispatchQueue.init(label: "com.zjb.concurrent",attributes: .concurrent)
        for i in 0...15 {
            queue.async {
                sleep(1)
                print("this is \(Thread.current) \(i)")
            }
        }

iOS中多線程的示例分析

方式二:queue.sync 同步

  let queue =   DispatchQueue.init(label: "com.zjb.concurrent",attributes: .concurrent)
        for i in 0...15 {
            queue.sync {
                sleep(1)
                print("this is \(Thread.current) \(i)")
            }
        }

iOS中多線程的示例分析

附加網絡上一段代碼

for i in 1...10 {
               DispatchQueue.global(qos: DispatchQoS.QoSClass.default).async {
                   NSLog("DispatchQoS.QoSClass.default, %d", i)
               }
                    
               DispatchQueue.global(qos: DispatchQoS.QoSClass.background).async {
                   NSLog("DispatchQoS.QoSClass.background, %d", i)
               }
                    
               DispatchQueue.global(qos: DispatchQoS.QoSClass.unspecified).async {
                   NSLog("DispatchQoS.QoSClass.unspecified, %d", i)
               }
                    
               DispatchQueue.global(qos: DispatchQoS.QoSClass.userInitiated).async {
                   NSLog("DispatchQoS.QoSClass.userInitiated, %d", i)
               }
                    
               DispatchQueue.global(qos: DispatchQoS.QoSClass.userInteractive).async {
                   NSLog("DispatchQoS.QoSClass.userInteractive, %d", i)
               }
                    
               DispatchQueue.global(qos: DispatchQoS.QoSClass.utility).async {
                   NSLog("DispatchQoS.QoSClass.utility, %d", i)
               }
        }

優先級userInteractive最高、background最低

感謝各位的閱讀!關于“iOS中多線程的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

翼城县| 安康市| 江川县| 建水县| 崇阳县| 江达县| 即墨市| 呈贡县| 榆中县| 湛江市| 武威市| 叙永县| 拉萨市| 安岳县| 蕉岭县| 桃江县| 兖州市| 高碑店市| 石家庄市| 仙居县| 嘉义市| 赫章县| 军事| 磐安县| 青铜峡市| 三门县| 金山区| 溆浦县| 远安县| 威远县| 新郑市| 四会市| 全南县| 巴彦县| 抚宁县| 中阳县| 克拉玛依市| 云阳县| 江西省| 金华市| 崇文区|