最佳答案
只是一个简单的程序,但我不断得到这个编译器错误。我使用 MinGW 的编译器。
这是头文件 点 H:
//type for a Cartesian point
typedef struct {
double x;
double y;
} Point;
Point create(double x, double y);
Point midpoint(Point p, Point q);
这里是 点 c:
//This is the implementation of the point type
#include "point.h"
int main() {
return 0;
}
Point create(double x, double y) {
Point p;
p.x = x;
p.y = y;
return p;
}
Point midpoint(Point p, Point q) {
Point mid;
mid.x = (p.x + q.x) / 2;
mid.y = (p.y + q.y) / 2;
return mid;
}
这就是编译器的问题所在,我一直在想:
C: 对‘ create (double x,double y)’的未定义引用
而它是在 point.c 中定义的。
这是一个名为 Testpoint.c的独立文件:
#include "point.h"
#include <assert.h>
#include <stdio.h>
int main() {
double x = 1;
double y = 1;
Point p = create(x, y);
assert(p.x == 1);
return 0;
}
我不知道问题出在哪里。