Scala中关于auxiliary constructors

Posted 25th-engineer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala中关于auxiliary constructors相关的知识,希望对你有一定的参考价值。

  In Scala, constructors other than the primary constructor are called auxiliary constructors.

  Auxiliary constructors in Scala start with def this(...).

 

  In Scala, every auxiliary constructor must invoke another constructor of the same class as its first action. In other words, the first statement in every auxiliary

constructor in every Scala class will have the form "this(...)". The invoked constructor is either the primary constructor (as in the Rational example), or another

auxiliary constructor that comes textually before the calling constructor. The net effect of this rule is that every constructor invocation in Scala will end up

eventually calling the primary constructor of the class. The primary constructor is thus the single point of entry of a class.

  Note

  If you‘re familiar with Java, you may wonder why Scala‘s rules for constructors are a bit more restrictive than Java‘s. In Java, a constructor must either invoke

another constructor of the same class, or directly invoke a constructor of the superclass, as its first action. In a Scala class, only the primary constructor can

invoke a superclass constructor. The increased restriction in Scala is really a design trade-off that needed to be paid in exchange for the greater conciseness and

simplicity of Scala‘s constructors compared to Java‘s.

 

以上是关于Scala中关于auxiliary constructors的主要内容,如果未能解决你的问题,请参考以下文章

idea中关联Scala源码

关闭Scala中的循环变量

Scala笔记整理:函数式编程

聊聊 Scala 的伴生对象及其意义

RMAN-04006: error from auxiliary database

hdu 5927 Auxiliary Set 贪心