Scala REPL 类加载器返回“null”调用 getResourceAsStream() 方法时
为什么 Scala REPL 的 TheReplClassLoader.getResourceAsStream(someGeneeratedClassName)
返回 null?
Why does Scala REPL's TheReplClassLoader.getResourceAsStream(someGeneratedClassName)
return null?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除了它属于“尚未实施”类别之外没有其他原因。现在确实如此。
No reason other than it being in the "not yet implemented" category. It does now.
也许名为
someGeneeratedClassName
的资源不存在? Java 将返回null
如果找不到资源。Perhaps the resource named
someGeneratedClassName
does not exist? Java will returnnull
if the resource cannot be located.你的问题不是很详细。您使用独立的 REPL 还是实例化解释器?在后一种情况下,您可能会在此邮件列表帖子中找到有关解释器类路径的一些有用信息: http ://www.scala-lang.org/node/8002
Your question is not very detailed. Are you using the standalone REPL or instantiating an interpreter? In the latter case, you may find some useful information about the interpreter's class path in this mailing list post : http://www.scala-lang.org/node/8002