从 java 访问 scala 对象字段
我在从 java 访问 scala 对象的字段时遇到问题。
斯卡拉:
object TestObject {
val field = 5
}
Java:
public class JavaTest
{
public static void main(String[] args)
{
int i = TestObject.field;
}
}
错误:
[error] JavaTest.java: cannot find symbol
[error] symbol : variable field
[error] location: class TestObject
[error] int i = TestObject.field;
I'm having trouble accessing the fields of a scala object from java.
Scala:
object TestObject {
val field = 5
}
Java:
public class JavaTest
{
public static void main(String[] args)
{
int i = TestObject.field;
}
}
Error:
[error] JavaTest.java: cannot find symbol
[error] symbol : variable field
[error] location: class TestObject
[error] int i = TestObject.field;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Scala 字段是私有变量,具有同名的 getter 以保持不变性。
Scala fields are private variables with a getter of the same name to preserve immutability.