C++ error LNK2019: 无法解析的外部符号(在线等)
############################employee.h#############################ifndefEMPLOYEE_H#d...
############################
employee.h
############################
#ifndef EMPLOYEE_H
#define EMPLOYEE_H
class Employee
{
private:
char name[10];
float salary;
public:
Employee(char nm[], float slr);
void display();
};
#endif
############################
employee.cpp
############################
#include <iostream>
#include <cstring>
#include "employee.h"
using namespace std;
Employee::Employee(char nm[], float slr){
strcpy(name, nm);
salary = slr;
}
void Employee::display(){
cout << "名称:" << name << endl;
cout << "工资:" << salary << endl;
}
############################
test.cpp
############################
#include "employee.h"
void main(){
Employee e("Jim", 3000.00);
e.display();
}
############################
出错
############################
testEmployee.obj : error LNK2019: 无法解析的外部符号 "public: void __thiscall Em
ployee::display(void)" (?display@Employee@@QAEXXZ),该符号在函数 _main 中被引用
testEmployee.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall Employe
e::Employee(char * const,float)" (??0Employee@@QAE@QADM@Z),该符号在函数 _main
中被引用
testEmployee.exe : fatal error LNK1120: 2 个无法解析的外部命令 展开
employee.h
############################
#ifndef EMPLOYEE_H
#define EMPLOYEE_H
class Employee
{
private:
char name[10];
float salary;
public:
Employee(char nm[], float slr);
void display();
};
#endif
############################
employee.cpp
############################
#include <iostream>
#include <cstring>
#include "employee.h"
using namespace std;
Employee::Employee(char nm[], float slr){
strcpy(name, nm);
salary = slr;
}
void Employee::display(){
cout << "名称:" << name << endl;
cout << "工资:" << salary << endl;
}
############################
test.cpp
############################
#include "employee.h"
void main(){
Employee e("Jim", 3000.00);
e.display();
}
############################
出错
############################
testEmployee.obj : error LNK2019: 无法解析的外部符号 "public: void __thiscall Em
ployee::display(void)" (?display@Employee@@QAEXXZ),该符号在函数 _main 中被引用
testEmployee.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall Employe
e::Employee(char * const,float)" (??0Employee@@QAE@QADM@Z),该符号在函数 _main
中被引用
testEmployee.exe : fatal error LNK1120: 2 个无法解析的外部命令 展开
展开全部
我这里编译连接楼主的代码是没有问题的。
我的编译环境是visual studio 2005,建的win32 console application项目。
不知楼主用的什么编译环境。
楼主的代码中有一些最好改一下:
############################
employee.h
############################
#ifndef EMPLOYEE_H
#define EMPLOYEE_H
class Employee
{
private:
char name[10];
float salary;
public:
Employee(const char *nm, const float slr); // 参数的写法改一下
void display();
};
#endif
############################
employee.cpp
############################
#include <iostream>
#include <cstring>
#include "employee.h"
using namespace std;
Employee::Employee(const char *nm, const float slr){ // 参数写法改一下
strcpy(name, nm);
salary = slr;
}
void Employee::display(){
cout << "名称:" << name << endl;
cout << "工资:" << salary << endl;
}
main函数不变。
我的编译环境是visual studio 2005,建的win32 console application项目。
不知楼主用的什么编译环境。
楼主的代码中有一些最好改一下:
############################
employee.h
############################
#ifndef EMPLOYEE_H
#define EMPLOYEE_H
class Employee
{
private:
char name[10];
float salary;
public:
Employee(const char *nm, const float slr); // 参数的写法改一下
void display();
};
#endif
############################
employee.cpp
############################
#include <iostream>
#include <cstring>
#include "employee.h"
using namespace std;
Employee::Employee(const char *nm, const float slr){ // 参数写法改一下
strcpy(name, nm);
salary = slr;
}
void Employee::display(){
cout << "名称:" << name << endl;
cout << "工资:" << salary << endl;
}
main函数不变。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询