人.h
#ifndef PERSON_H_
#define PERSON_H_
/* Person.h */
class Person {
int age;
std::string name;
public:
Person(int, std::string);
std::string getName();
int getAge();
};
#endif /* PERSON_H_ */
person(int std::string) 函数声明使用 std::string 名称,但我没有将它包含在头文件中。因此,我希望编译器抱怨缺少符号。然而它编译并运行良好!为什么?
剩下的代码...
个人.cpp
#include <string>
#include "Person.h"
Person::Person(int age, std::string name)
{
this->name = name;
this->age = age;
}
std::string Person::getName()
{
return this->name;
}
int Person::getAge()
{
return this->age;
}
主文件
#include <string>
#include "Person.h"
int main() {
printFunc();
Person chelsea_manning(5, std::string("Chelsea Manning"));
}
另外,我是 C++ 新手,所以如果您发现我的代码 / OOP 有任何奇怪之处,请告诉我。