下面是我的 .h 文件
#include <iostream>
#include <string>
using namespace std;
class ClassTwo
{
private:
string sType;
int x,y;
public:
void setSType(string);
void setX(int);
void setY(int);
string getSType();
int getX();
int getY();
};
我想构造 2 构造函数。
其中构造函数 1 将无参数,将所有 int 值初始化为 0,将字符串初始化为空字符串。
构造函数 2 将使用 get set 方法接收参数,即 sType、x 和 y。
但我如何做到这一点。我应该在我的 cpp 文件或 .h 文件中对此进行编码吗