使用参数扩展类

发布于 2024-10-24 18:02:42 字数 537 浏览 0 评论 0原文

我注意到我可以扩展一个类,同时将参数传递给扩展类:

scala> class SomeClass(val str: String)
defined class SomeClass

scala> class SubclassOne extends SomeClass("one")
defined class SubclassOne

scala> class SubclassTwo extends SomeClass("two")
defined class SubclassTwo

scala> val obj : SomeClass = new SubclassOne
obj: SomeClass = SubclassOne@2dca4eb4

scala> obj.str
res0: String = one

我经常使用案例类,其中 ClassName(args) 实际上创建了一个对象,所以对我来说看起来我正在扩展一个对象,但我不确定这里。

这是否意味着我正在扩展该类,并自动将参数传递给超级构造函数?

I noticed that I can extend a class and at the same time pass parameters to the extended class:

scala> class SomeClass(val str: String)
defined class SomeClass

scala> class SubclassOne extends SomeClass("one")
defined class SubclassOne

scala> class SubclassTwo extends SomeClass("two")
defined class SubclassTwo

scala> val obj : SomeClass = new SubclassOne
obj: SomeClass = SubclassOne@2dca4eb4

scala> obj.str
res0: String = one

I'm working a lot with case classes, where ClassName(args) actually creates an object, so to me it looks like I'm extending an object, but I'm not sure here.

Does it perhaps mean that I'm extending the class, and automatically pass an argument to the super constructor?

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

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

发布评论

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

评论(1

花开半夏魅人心 2024-10-31 18:02:42

这是否意味着我正在扩展该类,并自动将参数传递给超级构造函数?

是的,这正是它的意思。

Does it perhaps mean that I'm extending the class, and automatically pass an argument to the super constructor?

Yes, that is exactly what it means.

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