绕过 ORM 类已经扩展了 DB 类并且您需要它从抽象类扩展这一事实

发布于 2025-01-07 12:25:28 字数 304 浏览 1 评论 0原文

我的问题与 PHP 有关,但它可能与具有对象关系映射器的任何其他语言有关。

假设我有一个扩展 DbObject 的事件类和扩展 DbObject 的异常,但我希望它们都从抽象类 TimePeriod 扩展。两个对象都是 ORM 对象。

为什么?因为我不想在具有开始和结束日期的每种类型的类上手动编写 getStartTimeStamp() 代码。

现在我正在使用界面,但我觉得它确实损害了它的干燥性。

我是否只需重新设计它,使抽象类 TimePeriod 扩展 Dbobject 并实现从它扩展的每个对象?或者有更好的解决方案吗?

My problem has to do with PHP, but it could potentially relate to any other language with an object relational mapper.

Say I have a class Event that extends DbObject and Exception that extends DbObject but I want them both to extend from Abstract Class TimePeriod. Both objects being ORM objects.

Why? Because I don't want to manually code getStartTimeStamp() on each type of class that has a start and end date.

Right now I am using interfaces but I feel like it really hurts the DRY of it.

Do I simply redesign it such that Abstract Class TimePeriod extends Dbobject and implement each object extend from it? Or is there a better solution?

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

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

发布评论

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

评论(1

瘫痪情歌 2025-01-14 12:25:28

您面临的多重继承问题的一般解决方案是聚合/组合。

它还使您的设计更加清晰。毕竟例外不能是一个时间段。

因此,您想要的是创建一个 TimePeriod 类并将该类的对象传递给 Exception 和 Event。
然后,您可以像这样直接在时间段对象上调用 getStartTimeStamp() :

$event->getTimePeriod()->getStartTimeStamp();

或者创建包装方法并调用它们。

The general solution to the multi-inheritance problem you are facing is aggregation/composition.

It also makes your design clearer. Exception can't be a time period after all.

So what you want is to create a TimePeriod class and pass objects of that class to Exception and Event.
Then you can either call getStartTimeStamp() on the time period object directly like that:

$event->getTimePeriod()->getStartTimeStamp();

Or create wrapping methods and calling them instead.

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