std::gets
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
char *gets( char *str ); |
(已弃用) | |
读取stdin给定的字符串,直到找到一个换行符或文件结束时,.
原文:
Reads stdin into given character string until a newline character is found or end-of-file occurs.
目录 |
[编辑] 参数
str | - | 字符串被写入
|
[编辑] 返回值
str
成功,NULL其他方式[编辑] 注释
不执行边界检查,因此这个功能是非常容易受到缓冲区溢出攻击。使用
fgets()
了吧原文:
The bounds checking is not performed, therefore this function is extremely vulnerable to buffer-overflow attacks. Use
fgets()
instead.[编辑] 另请参阅
stdin,文件流或缓冲区的读取格式的输入 原文: reads formatted input from stdin, a file stream or a buffer (函数) | |
得到一个字符串从一个文件流 原文: gets a character string from a file stream (函数) | |
将一个字符串写入一个文件流 原文: writes a character string to a file stream (函数) | |
C documentation for gets
|