定义一个不平凡的 Scala 案例类是否合适?

发布于 2024-10-11 04:53:04 字数 251 浏览 0 评论 0原文

我今天定义了一个 Scala 类,我认为“我需要一个 equals 方法和一个 hashCode 方法;并且一个 copy 方法是我也会把它变成一个案例类。”我的类已经有一堆其他代码,而且绝不是微不足道的。

很好,一切都有效,但是当教科书处理案例类时,所有示例都将它们定义为用作值类或“数据传输对象”。定义一个非平凡的案例类是否合适?上面描述的思维过程可以吗?还是我需要以不同的方式思考案例类?

I'm defining a Scala class today, and I think "I need an equals method and a hashCode method; and a copy method would be handy too. I'll turn this into a case class." My class already has a bunch of other code, and is in no way trivial.

So fine, it all works and everything, but when the text books deal with case classes, all of the examples define them for use as value classes or 'data transfer objects'. Is it appropriate to define a non-trivial case class? Is the thought process described above OK, or do I need to think of case classes differently?

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

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

发布评论

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

评论(2

自由如风 2024-10-18 04:53:04

case 类 提供了基于主构造函数参数的 equalshashCodetoString 方法,所有这些方法都是也变成了 val 。此外,对象伴侣还获得一个 apply 和一个 unapply 方法,同样基于主构造函数参数。

此外,case 类 继承自SerializedProduct,并且不应由其他类扩展。

如果所有这些都适合您的类,那么请随意将其声明为“案例类”。

A case class provides, equals, hashCode and toString methods based on the main constructor parameters, all of which are turned into val too. In addition, the object companion gets an apply and an unapply methods, again based on the main constructor parameters.

Also, a case class inherits from Serializable and from Product, and should not be extended by other classes.

If all of these things are appropriate for your class, then feel free to declare it as a `case class'.

挖鼻大婶 2024-10-18 04:53:04

随意,只要它没有后代。扩展案例类是一个坏主意。

Feel free, provided it doesn't have descendants. Extending case classes is a bad idea.

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