'Task' 无法构造,因为它没有可访问的初始值设定项
'Task' cannot be constructed because it has no accessible initializers
我正在尝试新的 Swift 5.5 await async 功能,当我在 Playground 中尝试此操作时出现编译错误:
let task1 = Task {
// ...
}
'Task' cannot be constructed because it has no accessible initializers
我从 https://www.hackingwithswift.com/articles/233/whats-new-in-swift-5-5
得到了例子
有什么想法吗?
看起来当前的语法是 async { ... }
而不是 Task { ... }
,目的是在将来的某个版本中使用 Task
语法。
我正在尝试新的 Swift 5.5 await async 功能,当我在 Playground 中尝试此操作时出现编译错误:
let task1 = Task {
// ...
}
'Task' cannot be constructed because it has no accessible initializers
我从 https://www.hackingwithswift.com/articles/233/whats-new-in-swift-5-5
得到了例子有什么想法吗?
看起来当前的语法是 async { ... }
而不是 Task { ... }
,目的是在将来的某个版本中使用 Task
语法。