扩展集合时的 ​​Scala 返回类型

发布于 2024-10-05 03:23:09 字数 369 浏览 2 评论 0原文

如果我写

事物类扩展了 scala.collection.immutable.HashSet[Int]

新事物 + 5

那么结果是

res0: scala.collection.immutable.HashSet[Int] = Set(5)

我需要做什么才能使结果成为 Things 类型?我怀疑答案可能就在这里,但我很难理解发生了什么。

If I write

class Things extends scala.collection.immutable.HashSet[Int]

new Things + 5

Then the result is

res0: scala.collection.immutable.HashSet[Int] = Set(5)

What do I need to do for the result to be of type Things? I suspect the answer might be here, but am struggling to understand what's going on.

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

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

发布评论

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

评论(1

二货你真萌 2024-10-12 03:23:09

如果没有您的代码示例,我真的无法判断,但您可以看一下 Jesse Eichar 的帖子,其中介绍了自定义集合的实现,并很好地解决了您的问题。

http://daily-scala.blogspot.com/2010/04 /creating-custom-traversable.html

I can't really tell without a sample of your code but you can take a look at Jesse Eichar's post which provides a walk through the implementation of a custom collection and addresses your question nicely.

http://daily-scala.blogspot.com/2010/04/creating-custom-traversable.html

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