📅  最后修改于: 2022-03-11 14:44:46.777000             🧑  作者: Mango
class cl1{
private:
int x;
double u;
public:
cl1();
meth1();
friend class cl2; //to make friend class we are using friend keyword
};
class cl2{
private:
int x;
string y;
public:
cl2();
meth1();
friend class cl1;
};