- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是 Prata 的 C Primer Plus 中对 gets()
的描述:
It gets a string from your system's standard input device, normally your keyboard. Because a string has no predetermined length,
gets()
needs a way to know when to stop. Its method is to read characters until it reaches a newline (\n
) character, which you generate by pressing the Enter key. It takes all the characters up to (but not including) the newline, tacks on a null character (\0
), and gives the string to the calling program.
这让我很好奇当 gets()
只读入一个换行符时会发生什么。所以我写了这个:
int main(void)
{
char input[100];
while(gets(input))
{
printf("This is the input as a string: %s\n", input);
printf("Is it the string end character? %d\n", input == '\0');
printf("Is it a newline string? %d\n", input == "\n");
printf("Is it the empty string? %d\n", input == "");
}
return 0;
}
这是我与程序的互动:
$ ./a.out
This is some string
This is the input as a string: This is some string
Is it the string end character? 0
Is it a newline string? 0
Is it the empty string? 0
This is the input as a string:
Is it the string end character? 0
Is it a newline string? 0
Is it the empty string? 0
当我只按回车键时,第二个 block 真的很有趣。在这种情况下,input
到底是什么?这似乎不是我的任何猜测:\0
或 \n
或 ""
。
最佳答案
gets
的描述中的这一部分可能会令人困惑:
It takes all the characters up to (but not including) the newline
最好说它接受所有包括换行符的字符,但存储所有不包括的字符strong>换行符。
因此,如果用户输入some string
,gets
函数将从用户终端读取some string
和换行符,但存储缓冲区中只有 some string
- 换行符丢失了。这很好,因为反正没有人想要换行符 - 它是一个控制字符,而不是用户想要输入的数据的一部分。
因此,如果您只按enter,gets
会将其解释为空字符串。现在,正如一些人所指出的,您的代码有多个错误。
printf("This is the input as a string: %s\n", input);
这里没问题,尽管您可能想用一些人工字符分隔字符串以便更好地调试:
printf("This is the input as a string: '%s'\n", input);
printf("Is it the string end character? %d\n", input == '\0');
不好:您想在这里检查 1 个字节,而不是整个缓冲区。如果您尝试将整个缓冲区与 0 进行比较,答案始终为 false
,因为编译器将 \0
转换为 NULL
并将比较解释为“缓冲区是否存在?”。
正确的做法是:
printf("Does the first byte contain the string end character? %d\n", input[0] == '\0');
这仅将 1 个字节与 \0
进行比较。
printf("Is it a newline string? %d\n", input == "\n");
不好:这会将缓冲区的地址与 "\n"
的地址进行比较 - 答案总是 false
。在 C 中比较字符串的正确方法是 strcmp
:
printf("Is it a newline string? %d\n", strcmp(input, "\n") == 0);
注意特殊用法:当字符串相等时,strcmp
返回 0。
printf("Is it the empty string? %d\n", input == "");
同样的错误。在这里也使用 strcmp
:
printf("Is it the empty string? %d\n", strcmp(input, "") == 0);
顺便说一句,正如人们常说的那样,gets
不能以安全的方式使用,因为它不支持缓冲区溢出保护。所以你应该使用 fgets
相反,即使它不太方便:
char input[100];
while (fgets(input, sizeof input, stdin))
{
...
}
这可能会导致混淆:fgets
不会从它读取的输入中删除换行字节。因此,如果您将代码中的 gets
替换为 fgets
,您将得到不同的结果。幸运的是,您的代码将以清晰的方式说明差异。
关于c - gets() 只读取一个换行符时保存了什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32757162/
我有一个带有 的表格我想在服务器端捕获该文本区域中的任何换行符,并将它们替换为 . 这可能吗? 我尝试设置 white-space:pre在 textarea 上的 CSS,但仍然不够。 最佳答案
我正在通过 FileStream 更改文件(这是一个非常大的文件,我只需要更改标题而不重写整个文件。 该文件可以有 Unix 或 Windows 换行符,知道哪一个对我来说很重要,这样我可以在更新文件
如何以编程方式(不使用 vi)将 DOS/Windows 换行符转换为 Unix 换行符? dos2unix 和 unix2dos 命令在某些系统上不可用。 如何使用 sed、awk 和 tr 等命令
我编辑了一个 BibteX 文件,到目前为止,它显示了我需要的所有信息。 FUNCTION {electronic} { output.bibitem format.btitle "title"
您的软件是否处理来自其他系统的换行符? Linux/BSD linefeed ^J 10 x0A Windows/IBM return linefeed ^M^
我发现 Windows 命令行重定向会自动将 '\n' 替换为 '\r\n'。有什么方法可以避免这种情况?因为在 stdout 或 stderr 重定向之后,如果您将 '\r\n' 写入控制台,您将得
来自 this question ,这个…… lines = foo.value.split(/\r\n|\r|\n/); 是拆分字符串的一种方法,但如何用换行符将其连接回去? 另外,我想知道如果我说
我正在尝试获取新行,但如果我使用 \n 它不起作用。 任何通过向字符串添加一些东西来换行的方法,例如 \r\n (这也不起作用) gfx.DrawString("Project No \n" + te
我有一串数据,中间有换行符。例如: "Product Name \n Product Color \n Product Quantity \n Product Location \n Product
我正在尝试让 scmCommentPrefix 按照 http://maven.apache.org/plugins/maven-release-plugin/faq.html#scmCommentP
如何检查正则表达式 /^\n/在字符串中 blahblahblah 我似乎无法从 php 的 preg_match 获得返回值 1 . 编辑: 由于某种原因,我的坏处是 CR 本身就是我的换行符。
我很难在与文本字符串相同的行上输出变量。当我使用Write-Host而不是Write-Output时,它可以工作。我想使用Write-Output,因为这似乎是最佳做法(将内容保留在管道中),但是Wr
我正在Powershell中工作,以为here字符串中的特定单词着色。除包含回车/换行符的单词外,其他功能均有效。没有这些字符,如何计算单词的长度? 以下是我正在使用的功能和测试数据。我希望第二行上的
我有一个在Powershell中运行的脚本,并且我希望能够在脚本名称和脚本内容本身之间的结果文本文件输出中添加一行。 当前,从下面开始,行$str_msg = $file,[System.IO.Fil
有人知道smalltalk中字符串的换行符是什么吗? 我试图将字符串拆分为单独的行,但我无法弄清楚smalltalk 中的换行符是什么。 即。 string := 'smalltalk is
我有以下 printf 语句: printf ("%s (%s)\n",$row["word"], $row["definition"]); 我正在尝试解决换行符而不是: word defin
这个问题已经有答案了: how to use dotall flag for regex.exec() (4 个回答) 已关闭 7 年前。 字符串内容
我想用 CSS 换行。我正在使用内容。 td:before { content: "Test\A Test2"; } 它不工作。如何正确
考虑一个具有 UNIX 行结尾的 C++ 文件(即 '\x0a' 而不是 "\x0d\x0a")并包含以下原始字符串文字: const char foo[] = R"(hello^M )"; (其中
我有以下 printf 语句: printf ("%s (%s)\n",$row["word"], $row["definition"]); 我正在尝试解决换行符而不是: word defin
我是一名优秀的程序员,十分优秀!