“朋友”可以吗? C类之间的关系可以转移吗?

发布于 2024-12-05 02:54:25 字数 54 浏览 1 评论 0原文

假设A类是B类的朋友,B是C类的朋友,A是C的朋友还是C是A的朋友,或者两者都是,或者都不是?

suppose class A is the friend of class B, and B is friend of class C, is A the friend of C or C the friend of A, or both, or none ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

伏妖词 2024-12-12 02:54:25

不,C++ 中的友谊是不可传递的。

来自 C++03 标准,11.4-8:

友谊既不是继承的,也不是传递的。示例:

class A {
  friend class B;
  int a;
};

class B {
  friend class C;
};

class C {
  void f(A* p)
  {
    p->a++; 
    // error: C is not a friend of A
    // despite being a friend of a friend
  }
};

class D : public B {
  void f(A* p)
  {
    p->a++; 
    // error: D is not a friend of A
    // despite being derived from a friend
  }
};

No, friendship in C++ is not transitive.

From the C++03 standard, 11.4-8:

Friendship is neither inherited nor transitive. Example:

class A {
  friend class B;
  int a;
};

class B {
  friend class C;
};

class C {
  void f(A* p)
  {
    p->a++; 
    // error: C is not a friend of A
    // despite being a friend of a friend
  }
};

class D : public B {
  void f(A* p)
  {
    p->a++; 
    // error: D is not a friend of A
    // despite being derived from a friend
  }
};
前事休说 2024-12-12 02:54:25

没有任何。请参阅 C++ 常见问题解答

友谊不是继承、传递或相互的

None. See the C++FAQ:

Friendship isn't inherited, transitive, or reciprocal

孤单情人 2024-12-12 02:54:25

C++ 类的友谊不会以这种方式传播,因此 A 类不会成为 C 类的朋友。就像在 Facebook 上一样,如果您的一位朋友与某人交了朋友,该人不会自动成为您的朋友 =)

C++ class friendship does not propagate in this way, so A class wouldn't be a friend of C class. It's like on Facebook, if one of your friends makes friends with someone, that person doesn't become your friend automatically =)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文