gpt4 book ai didi

ubuntu - Ubuntu 上的 Swift : use of undeclared type 'NSFileHandle'

转载 作者:行者123 更新时间:2023-12-04 18:45:50 24 4
gpt4 key购买 nike

我在 Ubuntu 上运行 swift 3.0.2。

当我运行以下代码时

 import Foundation
let file: NSFileHandle? = NSFileHandle(forReadingAtPath: "data.txt")

我得到一个错误

test.swift:274:11:错误:使用未声明的类型“NSFileHandle”
让文件:NSFileHandle? = NSFileHandle(forReadingAtPath: "data.txt")

NSFileHandle 在 Foundation 的 API 中,但对于 Linux 上的 Foundation 库是否如此?

我究竟做错了什么?

问候,

最佳答案

来自 SE-0086 Drop NS Prefix in Swift Foundation :

As part of Swift 3 API Naming and the introduction of Swift Core Libraries, we are dropping the NS prefix from key Foundation types in Swift.


NSFileHandle在该列表中并被称为 FileHandle在 swift 3 中:
import Foundation
let file = FileHandle(forReadingAtPath: "data.txt")

这适用于 Apple 平台和 Linux。
Linux实现可以在这里看到:
NSFileHandle.swift .

有讨论 [swift-evolution] Pitch: Replacement for FileHandle
关于撤消重命名和实现 FileHandle在一个更
类似 Swift 的方式(例如 throw ing Swift 错误而不是 NSException s)。

关于ubuntu - Ubuntu 上的 Swift : use of undeclared type 'NSFileHandle' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42243989/

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