在“有一个”中,类关系是否必须在类内部实现所包含的类。 。

发布于 2024-10-04 11:31:20 字数 240 浏览 2 评论 0原文

在“has-a”类关系中,所包含的类必须在包含它的类内部实现,还是可以完全单独编写在不同的文件中?

例如:

让我们说:

class Pen
{
   public:
   .
   .
   .

   private:
      Ball point;
};

类可以Ball 位于单独的头文件中,还是必须在 Pen 类中实现它?

In a "has-a" class relationship does the contained class have to be implemented inside the class that contains it or can it be written entirely separately in a different file?

For example:

let's say:

class Pen
{
   public:
   .
   .
   .

   private:
      Ball point;
};

Can class Ball be in a separate header file or do I have to implement it within class Pen?

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

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

发布评论

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

评论(2

情定在深秋 2024-10-11 11:31:20

是的,Ball 可以位于它自己的文件中:

Ball.h

class Ball
{
} // eo class Ball

Pen.h

#include "ball.h"

class Pen
{
private:
    Ball point;
} // eo clas Pen

Yes, Ball can be in it's own file:

Ball.h

class Ball
{
} // eo class Ball

Pen.h

#include "ball.h"

class Pen
{
private:
    Ball point;
} // eo clas Pen
怪我入戏太深 2024-10-11 11:31:20

两种方式都可以。如果 class Ball 不仅仅在 class Pen 中使用,您应该单独实现它 - 作为同一文件或另一个文件中的单独类。

无论如何,C++ 并不关心实现驻留在多少个文件中。觉得方便就做吧。

It can be either way. If class Ball is not for use only within class Pen you should implement it separately - as a separate class in the same file or in another file.

Anyway C++ doesn't care how many files the implementations reside. Do as it feels convenient.

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