[求助]关于头文件的问题
这里有一个关于头文件的问题,请各位大侠解决!
在头文件里(print.h)是这样的代码:
#ifdef PRINT_H
#define PRINT_H
#include <iostream>
using namespace std;
void print1() {
cout << "***********************************" << endl;
cout << "* 欢迎使用 *" << endl;
cout << "* 成绩模拟管理系统 *" << endl;
cout << "* 作者************* *" << endl;
cout << "***********************************" << endl;
}
#endif
cpp 文件里的代码如下:
#include "print.h"
#include <iostream>
using namespace std;
int main() {
print1();
return 0;
}
编译出错,显示:error C2065: 'print1' : undeclared identifier
print1()这个函数没定义,这是怎么回事啊?请各位赐教,谢谢!!