我不断收到此错误:no matching function for call to 'Person::Person(const char [10])
该类位于单独的 cpp 文件中。当我在同一个 cpp 文件中有构造函数时,我可以轻松地创建一个对象。这是我的代码:
main.cpp 文件
#include <iostream>
#include "Person.h"
using namespace std;
int main()
{
Person p("hellooooo");
return 0;
}
人.h 文件
#ifndef PERSON_H
#define PERSON_H
class Person
{
public:
Person();
protected:
private:
};
#endif // PERSON_H
个人.cpp 文件
#include <iostream>
#include "Person.h"
using namespace std;
Person::Person()
{
cout << "this is the default constructor??";
}
Person::Person(string n)
{
cout << n;
}