admin管理员组文章数量:1350113
Here is a quick experiment to demonstrate an inconsistent behaviour:
trait Foundation {
import Foundation.*
{
initialisationCounter.incrementAndGet()
}
case class Top1() {
}
}
object Foundation {
lazy val initialisationCounter = new AtomicInteger()
}
(in 2 different packages pkg1 & pkg2)
package object pkg1 extends Foundation {}
package object pkg2 {
{
initialisationCounter.incrementAndGet()
}
case class Top1() {}
}
(in a Scalatest suite)
class PackageObjInit extends SparkEnvSpec {
it("for package object inheriting a trait") {
Foundation.initialisationCounter.set(0)
val top = pkg1.Top1()
assert(Foundation.initialisationCounter.intValue() == 1)
}
it("for self-contained package object") {
Foundation.initialisationCounter.set(0)
val top = pkg2.Top1()
assert(Foundation.initialisationCounter.intValue() == 1)
}
}
I expect the construction of both package objects to behave consistently, namely they should both be constructed on first import or first use of the case class that depends on them. Instead. Only the first test case succeeded.
Is it a design flaw of the compiler or a deliberate implementation intend to circumvent some self-referencing soundness hole? How can I determine the right moment of construction in other cases?
本文标签:
版权声明:本文标题:constructor - In Scala 23, how to consistently determine when a package object or top level variable will be constructed? - Stac 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743868383a2553006.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论