Scala 相当于 Java 的 static 块吗?
Scala 相当于 Java 的 static 块吗?
What is Scala equivalent of Java's static block ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Scala 相当于 Java 的 static 块吗?
What is Scala equivalent of Java's static block ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
伴生对象的构造函数(即主体)中的代码与 Java 类的静态初始化块中的代码不完全相同。在下面的示例中,我创建了 A 的实例,但未进行初始化。
要在创建类的第一个实例时触发伴随对象的构造,您可以从类构造函数访问它。
在许多情况下,差异并不重要。但如果您正在发射导弹(或其他副作用),您可能会关心!
Code in the constructor (that is, the body) of the companion object is not precisely the same as code in a static initialiser block of a Java class. In the example below, I create an instance of A, but the initialization does not occur.
To trigger construction of the companion object when the first instance of the class is created, you could access it from the class constructor.
In many circumstances, the difference would not matter. But if you are launching missiles (or other side effects), you might care!