在“有一个”中,类关系是否必须在类内部实现所包含的类。 。
在“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,
Ball
可以位于它自己的文件中:Ball.h
Pen.h
Yes,
Ball
can be in it's own file:Ball.h
Pen.h
两种方式都可以。如果
class Ball
不仅仅在class Pen
中使用,您应该单独实现它 - 作为同一文件或另一个文件中的单独类。无论如何,C++ 并不关心实现驻留在多少个文件中。觉得方便就做吧。
It can be either way. If
class Ball
is not for use only withinclass 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.