java 类文件在当前目录中吗?
“java”如何在不设置类路径的情况下知道要执行的类文件。即,它默认检查当前目录还是我们也需要为当前目录设置类路径。
How "java" knows the class file to execute without setting the class path.ie.,Does it check in the current directory by default or we need to set the class path for current directory too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它首先检查当前目录。如果未找到该类,它将在类路径中搜索该类。
It checks the current directory first. If the class is not found, it searches for that class in the class path.