init(fileDescriptor : Int32)
Creates and returns a file handle object associated with the specified file descriptor.
Availability 有効性
Technology
var fileDescriptor: Int32
{ get }
You can use this method to retrieve the file descriptor while it is open. If the file handle object owns the file descriptor, you must not close it yourself. However, you can use the close
method to close the file descriptor programmatically. If you do call the close
method, subsequent calls to this method raise an exception.
あなたはこのメソッドを使ってファイル記述子を、それが開かれている間に、取ってくることができます。ファイルハンドルオブジェクトがファイル記述子を所有するならば、あなたはそれをあなた自身で閉じる必要があります。しかしながら、あなたはclose
メソッドを使ってファイル記述子をプログラムに基づいて閉じることができます。あなたがclose
メソッド呼び出しを行うならば、このメソッドに対する続いて起こる呼び出しは例外を引き起こします。
init(fileDescriptor : Int32)