Type Property 型プロパティ

fileHandleWithStandardOutput

The file handle associated with the standard output file.

Declaration 宣言

@property(class, readonly, strong) NSFileHandle *fileHandleWithStandardOutput;

Return Value 戻り値

The shared file handle associated with the standard output file. 標準出力ファイルと結び付けられる共有ファイルハンドル。

Discussion 議論

Conventionally this is a terminal device that receives a stream of data from a program. 慣例的にこれは、プログラムからのデータのストリームを受け取るターミナルデバイスです。 There’s one standard output file handle per process; it’s a shared instance.

When using this method to create a file handle object, the file handle owns its associated file descriptor and is responsible for closing it. このメソッドを使ってファイルハンドルオブジェクトを作成する場合、ファイルハンドルは、それの結び付けられたファイル記述子を所有し、そしてそれを閉じることに責任を持ちます。

See Also 参照

Getting a File Handle ファイルハンドルを取得する

Related Documentation 関連文書