冲突类型

标签 c types conflict

我正在通过 K&R C 工作,GCC 继续给我这个错误,例如 1.9:

arrays.c:4:5: error: conflicting types for ‘getline’
/usr/include/stdio.h:675:20: note: previous declaration of ‘getline’ was here
arrays.c:27:5: error: conflicting types for ‘getline’
/usr/include/stdio.h:675:20: note: previous declaration of ‘getline’ was here
make: *** [arrays] Error 1

我的代码是:
#include <stdio.h>
#define MAXLINE 1000    /* maximum input line size */

int getline(char line[], int maxline);
void copy(char to[], char from[]);

/* print longest input line */
int main()
{
    int len;            /* current line length */
    int max;            /* maximum length seen so far */
    char line[MAXLINE];     /* current input line */
    char longest[MAXLINE];  /* longest line saved here */

    max = 0;
    while ((len = getline(line, MAXLINE)) > 0)
        if (len > max) {
            max = len;
            copy(longest, line);
        }
    if (max > 0)    /* there was a line */
        printf("%s", longest);
    return 0;
}

/* getline: read a line into s, return length */
int getline(char s[], int lim)
{
    int c, i;

    for (i=0; i<lim-1 && (c=getchar()) !=EOF && c!='\n'; ++i)
        s[i] = c;
    if (c == '\n') {
        s[i] = c;
        ++i;
    }
    s[i] = '\0';
    return i;
}

/* copy: copy 'from' into 'to'; assume to is big enough */
void copy(char to[], char from[])
{
    int i;

    i = 0;
    while ((to[i] = from[i]) != '\0')
        ++i;
}

我意识到该错误表明“getline”函数原型(prototype)和“getline”函数定义之间存在一些差异。我从这里复制并粘贴了另一个人的问题中的相同代码,以检查我是否打错了。它返回了相同的错误消息。我不知道我收到此错误是因为 K&R 的代码已经过时,还是与 GCC 编译代码的方式有关。请帮我找出我做错了什么。

最佳答案

重命名您的 getline作用于别的东西。您遇到了 getline 的命名错误stdio.h 中定义的函数.请注意,错误提示:“/usr/include/stdio.h :675:20: 注意: 之前的声明 的‘getline’在这里”

getline stdio.h 中定义带有以下签名:

ssize_t getline(char **lineptr, size_t *n, FILE *stream);

因为 C 没有命名空间,stdio.h 中的声明在编译期间被逐字复制,从而导致类型不匹配。

我不确定历史,但很可能是 getline在编写 K&R 时它还不是标准库的一部分(事实上,正如@NigelHarper 所指出的,它仍然不是 C 标准的一部分;它是 POSIX 的一部分)。

关于冲突类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18027041/

相关文章:

c - 在 C 中生成随机数

c - 如何将 CvMat 从类型 CV_AA 转换为 CV_32F

css - 具有相同 div ID '#container' 名称标签的两个外部 css 文件导致两个对象的定位问题

jquery - 多个Jquery冲突

c - C 结构的良好编码习惯?

c - 将两个字符串连接成一个时遇到问题

scala - Scala 是否与 Haskell 的 undefined 等价?

javascript - JavaScript 中的函数式数据类型

Python 类型检查未按预期工作

git - 查看本地和远程 Git 存储库之间的确切差异/提交