tmpfile
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdio.h> 中定义
|
||
FILE *tmpfile(); |
||
打开一个临时的文件。该文件被打开二进制文件的更新(
"wb+
模式)。保证是唯一在文件系统中的文件的文件名.原文:
Opens a temporary file. The file is opened as binary file for update (
"wb+
mode). The filename of the file is guaranteed to be unique within the filesystem.在程序退出时,该文件将被关闭.
原文:
The file will be closed when the program exits.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
相关的文件流或NULL,如果发生了错误
原文:
The associated file stream or NULL if an error has occurred
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
返回一个唯一的文件名 (函数) | |
C++ documentation for tmpfile
|