- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
最近我浏览了 K&R 的 C Programming Language 一书中关于指针的部分。我写了一个 C 程序,将单词描述转换为有效的 C:
//This program converts a word description like "x is a function returning
//a pointer to an array of pointers to functions returning char," which we will express as
// x () * [] * () char
// to
// char (*(*x())[])()
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define MAXTOKEN 100
#define BUFSIZE 100
enum { NAME, PARENS, BRACKETS};
char buf[BUFSIZE];
int bufp = 0;
int gettoken(void);
int tokentype;
char token[MAXTOKEN];
char out[1000];
main() {
int type;
char temp[MAXTOKEN];
while (gettoken() != EOF) {
strcpy_s(out, 1000, token);
while ((type = gettoken()) != '\n')
if (type == PARENS || type == BRACKETS)
strcat_s(out, 1000, token);
else
if (type == '*') {
sprintf_s(temp, MAXTOKEN, "(*%s)", out);
strcpy_s(out, 1000, temp);
} else
if (type == NAME) {
sprintf_s(temp, MAXTOKEN, "%s %s", token, out);
strcpy_s(out, 1000, temp);
} else
printf("invalid input at %s\n", token);
printf("%s\n", out);
}
return 0;
}
int gettoken(void) {
int c, getch(void);
void ungetch(int);
char *p = token;
while ((c = getch()) == ' ' || c == '\t')
;
if (c == '(') {
if ((c = getch()) == ')') {
strcpy_s(token, MAXTOKEN, "()");
return tokentype = PARENS;
} else {
ungetch(c);
return tokentype = '(';
}
} else
if (c == '[') {
for (*p++ = c; (*p++ = getch()) != ']'; )
;
*p = '\0';
return tokentype = BRACKETS;
} else
if (isalpha(c)) {
for (*p++ = c; isalnum(c = getch());)
*p++ = c;
*p = '\0';
ungetch(c);
return tokentype = NAME;
} else
return tokentype = c;
}
int getch(void) {
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungetch(int c) {
if (bufp >= BUFSIZE)
printf("ungetch: too many characters\n");
else
buf[bufp++] = c;
}
问题是我只能在终端窗口输入一行。如果我尝试输入第二行并按“Enter”按钮,转换后的结果就会出来。在此程序中,Enter 的工作方式类似于 EOF(Ctrl+Z 和 Enter)。为什么会这样?我在这里错过了一些重要的点吗?我是 C 的新手,所以可能犯了一些愚蠢的错误。我使用 Visual Studio 2015,因此一些库函数(如 strcpy)被替换为 _s 替代项。感谢您的宝贵时间和帮助!
最佳答案
您的代码有几个问题:
EOF
:您不应该让 ungetch(EOF)
将字符 \377
存储到 buf
。从 buf 重新读取它可能会或可能不会产生 -1,这取决于默认情况下 char
是否已签名。因此,无法正确处理非 ASCII 字符。您应该使 buf
成为一个 int
数组。EOF
,检查缓冲区边界。如果在此阶段遇到 EOF,或者如果在 ]
之前读取了太多字符,您将调用未定义的行为。gettoken()
内的局部范围内声明 getch()
和 ungetch()
。这些前向声明属于全局范围。main
的原型(prototype)应该是int main(void)
或int main(int argc, char *argv[])
,而不是一个过时的不完整 main()
。main
中,内部循环迭代直到读取 '\n'
。您将无法在此处正确检测到 EOF
。顺便说一下,它的效果应该与您观察到的完全相反。{}
大括号:第 11 行 if
语句构成 while ((type = main
中的 gettoken()) != '\n')
是单个语句,但为了可读性和稳定性,建议您将其放在一个 block 中。我不确定是哪个问题导致了您的问题,或者它是否来自其他来源,但您应该先尝试解决这些问题。
关于C: 在终端窗口中按 "Enter"就像 EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35976265/
读取文件时,我知道提供的最后一个字符是 EOF。现在,当我有 EOF 时会发生什么?该文件中的字符? 如何区分文件的“真实”结尾和 EOF特点? 最佳答案 我决定将我的评论移至答案。 您的文件中不能有
GNU Bash - 3.6.6 Here Documents [n]<<[-]word here-document delimiter If any part of word is
试图查看论坛但无法重新访问。 我正在尝试阅读文本。文字是:“给 b” 但是在使用 fgetc() 时,没有达到 EOF,最后我得到 '\n',然后是无穷大的 'y' 样本。 这是我的代码: Node*
我正在做一个非常简单的作业,需要输出文件的内容,但在做任何事情之前我意外地到达了 EOF。该文件仅包含单词“pig”,并且由于某种原因 EOF 返回 16。我正在使用 Dev-Cpp 并且该程序是用
我的 kubectl 无法读取文件,每次都返回 'error: unexpected EOF'。 kubectl apply -f service.yaml > error: unexpected E
我想知道什么时候使用 cat Hello world! () { setopt localoptions shnullcmd test-nullcmd } # nothing will be
我试图找出我正在向其中写入特定数据的文件中不需要的尾随结束数据的原因,并且不相信我在写入文件时出错。 输出如下: building room_numbr capacity packard
考虑下面的简单例子 #include #include #include using namespace std; int main() { string str = "string";
我在一个程序中有这个片段(在 Visual Studio 2005 中): if(_eof(fp->_file)) { break; } 当达到 eof 时,它打破了封闭循环。但是程序无法解析
我正在尝试为 Typed Racket 中的以下函数定义类型注释: (define (neof x) (if (eof-object? x) #f x)) 不加注释给出了类型: (Any ->
我正在为 Linux 构建系统的模块编写 .spec 文件,遇到一个小问题并想分享它。 用于编写脚本文件: cat /path/to/somewhere/script #blah blah EOF
我有一个 C++ 程序,它从一个文件中读取我希望有一堆格式相同的记录。如果遇到意外情况,无论是记录格式不正确还是输入失败,我都想停止阅读,我想区分这些不同的情况。 我看过 this answer并查看
我注意到它们之间的几个区别: 在 <
预期我正在生成子进程并执行“ssh”远程框。从最近几天开始它工作正常,现在突然间,每当我尝试生成子进程时,它都会抛出错误。不确定发生了什么。 直到现在我一直在使用 pexpect 3.1,我遇到了这个
这个问题已经有答案了: Why two EOF needed as input? [duplicate] (2 个回答) Why do I require multiple EOF (CTRL+Z)
我正在浏览一个文件来寻找特定的词 Char[50]=getline(file,/n) 使用 getline 将每一行存储到一个 char 数组中以与我要查找的字符串进行比较 If( “”==char[
引用两个问题: Incorrect output from C++ Primer 1.4.4 Confused by control flow execution in C++ Primer exam
我刚刚在 this 中找到一条评论回答说在循环条件中使用 iostream::eof “几乎肯定是错误的”。我通常使用类似 while(cin>>n) 的东西——我猜它会隐式检查 EOF。 为什么使用
我刚刚在 this 中找到一条评论回答说在循环条件中使用 iostream::eof “几乎肯定是错误的”。我通常使用类似 while(cin>>n) 的东西——我猜它会隐式检查 EOF。 为什么使用
我刚刚在 this 中找到一条评论回答说在循环条件中使用 iostream::eof “几乎肯定是错误的”。我通常使用类似 while(cin>>n) 的东西——我猜它会隐式检查 EOF。 为什么使用
我是一名优秀的程序员,十分优秀!