我制作了一个简单的标题,其中我有一个添加两个整数的函数,但即使我将标题链接到我的项目并且包含它,编译器也无法识别它:
在alx.h中:
#ifndef ALX_H_
#define ALX_H_
#include <iostream>
int add(int a,int b);
#endif /* ALX_H_ */
在alx.cpp中:
#include <iostream>
#include "alx.h"
using namespace std;
int add(int a,int b) {
return a+b;
}
在test.cpp中:
#include <iostream>
#include "alx.h"
using namespace std;
int main() {
int numb;
numb=add(15,5);
cout << numb;
return 0;
}
以下是测试的属性:http://imgur.com/a/J5Mxe