我真的是 C++ 新手,我有一个非常快速的问题,
struct triplet {
int first;
int second;
int third;
};
class mystery {
private:
int x;
int y;
struct triplet* the_triplet;
public:
mystery(int f, int s, int t);
~mystery();
mystery & mystery_member(const mystery & other) const;
};
线是做什么的
mystery & mystery_member(const mystery & other) const;
是什么意思?