gpt4 book ai didi

Swift dispatch_async 导致 EXC_BAD_ACCESS 错误

转载 作者:可可西里 更新时间:2023-11-01 02:15:23 25 4
gpt4 key购买 nike

在我的 Swift 项目中,我试图在后台线程中处理一个 FIFO 队列(我在这里将其称为列表以避免混淆)。当我使用 dispatch_async 时,它会在仅执行列表的某些部分后导致 EXC_BAD_ACCESS 错误。我已尽可能将代码简化为以下 Playground 代码。在 playground 中,当 main_thread 设置为 true 时,代码会处理列表中的所有 100 个项目。如果为假,则只会处理少数项目。如果代码在项目中,当 main_thread 为 false 时会出现 EXC_BAD_ACCESS。显然,我也尝试过指定一个串行队列,但这似乎没有帮助。我缺少或不理解什么?谢谢。

import UIKit

let main_thread = false
let serial_queue = true

class main_class {
var this_list = list_class()


func run(){
for i in 1...100 {
this_list.add_to_list( String(i) )
}

if main_thread {
this_list.process_list()
} else {
if serial_queue {
let my_serial_queue = dispatch_queue_create("msq", DISPATCH_QUEUE_SERIAL)
dispatch_async(my_serial_queue){()->Void in
self.this_list.process_list()
}
} else {
dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), { () ->Void in
self.this_list.process_list()
})
}

}
}
}

class list_class {
var my_list: [String] = []

func add_to_list( this: String ){
my_list.append( this )
}

func process_list(){
if my_list.count > 0 {
print("removing " + my_list[0])
remove_from_list( my_list[0] )
}
}

func remove_from_list( this: String ){
let found = my_list.indexOf( this )
if found != nil {
my_list.removeAtIndex( found! )
process_list()
}
}
}

var blah = main_class()
blah.run()

最佳答案

您的主线程正在退出,而后台线程仍在运行。主线程结束 -> 进程终止。

为 main 设置一些东西,以便在后台线程仍在运行时阻塞。例如,使用dispatch_group_wait();连同 dispatch_group_enter()dispatch_group_leave()

关于Swift dispatch_async 导致 EXC_BAD_ACCESS 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39187421/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com