可能重复:
关于 C++ 包含另一个类
我是新手,想了解更多关于如何将我的 C++ 文件拆分为 .h 和 .cpp 的信息
这是我的 File2.cpp
#include <iostream>
#include <string>
using namespace std;
class ClassTwo
{
private:
string myType;
public:
void setType(string);
string getType();
};
void ClassTwo::setType(string sType)
{
myType = sType;
}
void ClassTwo::getType(float fVal)
{
return myType;
}
我想将其拆分为 2 个文件,即 .h 和 .cpp 我如何将其拆分为一个具有私有和公共的类。
我想在 File1.cpp(另一个 cpp 文件)中使用 ClassTwo
我如何链接它,以便我可以在 ClassTwo 中使用它
感谢帮助。