导入“val”; Scala 源代码中的包
创建一个名为“val”的 Java 包并将一个类放入其中,然后尝试将其导入到 Scala 程序中。 scalac 将失败并显示以下错误消息:
[scalac] /tmp/Hello.scala:6: error: identifier expected but 'val' found.
[scalac] import net.slimweb.ann.val.NotEmpty
[scalac] ^
[scalac] one error found
有什么想法吗?
Create a Java package named 'val' and put a class in it and try to import it in a Scala program. scalac will fail with the following error message:
[scalac] /tmp/Hello.scala:6: error: identifier expected but 'val' found.
[scalac] import net.slimweb.ann.val.NotEmpty
[scalac] ^
[scalac] one error found
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
反引号可用于转义符号:
除了使用它们来定义具有保留名称的符号,或调用具有关键字作为方法的遗留java代码(例如,名为with的方法)之外,它们还可以用于其中包含空格的符号或否则奇怪的字符
Backquotes can be used to escape symbols:
Except for using them to define symbols with reserved names, or call legacy java code that has keywords as methods (e.g., a method named with), they can also be used for symbols with spaces in them or otherwise weird characters