20200917--iOS之FileHandle,文件操作类

FileHandle是iOS中用于访问文件、套接字、管道和设备数据的类。它可以进行读取、写入、查找等操作,并支持异步通信。通过不同的初始化方法可以获取针对不同路径或URL的文件句柄,用于读写操作。注意,当使用FileHandle进行异步通信时,必须在有活跃Run Loop的线程中进行。
摘要由CSDN通过智能技术生成

Class

FileHandle

An object-oriented wrapper for a file descriptor.

 --文件描述符的面向对象的包装者

--所以文件句柄就是对文件描述符的包装者

Declaration

class FileHandle : NSObject

Overview                                  --概览

You use file handle objects to access data associated with files, sockets, pipes, and devices. For files, you can read, write, and seek within the file. For sockets, pipes, and devices, you can use a file handle object to monitor the device and process data asynchronously.

         --您可以使用文件句柄对象访问文件、套接字、管道和设备相关联的数据。 对于文件,您可以在文件中读取、写入和查找。 对于套接字、管道和设备,您可以使用文件句柄对象来异步监视设备和处理数据。

 

Most creation methods for FileHandle cause the file handle object to take ownership of the associated file descriptor. This means that the file handle object both creates the file descriptor and is responsible for closing it later, usually when the file handle object itself is deallocated. If you want to use a file handle object with a file descriptor that you created, use the init(fileDescriptor:) method or use the init(fileDescriptor:closeOnDealloc:) method and pass false for the flag parameter.

        --FileHandle的大多数创建方法都会导致文件句柄对象取得相关文件描述符的所有权。 这意味着文件句柄对象既创建文件描述符,又负责稍后关闭它,通常是在文件句柄对象本身被释放时。 如果要将文件句柄对象与您创建的文件描述符一起使用,请使用init(fileDescriptor:)方法或使用init(fileDescriptor:closeOnDealloc:)方法并为flag参数传递false。

Run Loop Considerations                    --运行循环时的考虑事项

When using a file handle object to communicate asynchronously with a socket, you must initiate the corresponding operations from a thread with an active run loop. Although the read, accept, and wait operations themselves are performed asynchronously on background threads, the file handle uses a run loop source to monitor the operations and notify your code appropriately. Therefore, you must call those methods from your application’s main thread or from any thread where you have configured a run loop and are using it to process events.

         --使用文件句柄对象与套接字异步通信时,必须具有活动Run循环的线程启动相应的操作。 尽管读取、接受和等待操作本身在后台线程上异步执行,但文件句柄使用Run循环源来监视操作并适当地通知您的代码。 因此,您必须从 应用程序的主线程 或 已配置Run循环的(并使用它来处理事件的)线程中 调用这些方法。

For more information about configuring and using run loops, see Threading Programming Guide.

        --有关配置和使用运行循环的更多信息,请参见

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值