java 类文件在当前目录中吗?

发布于 2024-09-19 08:05:38 字数 65 浏览 4 评论 0原文

“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

So尛奶瓶 2024-09-26 08:05:38

它首先检查当前目录。如果未找到该类,它将在类路径中搜索该类。

默认类路径是当前目录。设置 CLASSPATH 变量或使用 -classpath 命令行选项会覆盖默认值,因此如果要在搜索路径中包含当前目录,则必须包含>“.” 在新设置中。 [来源]

It checks the current directory first. If the class is not found, it searches for that class in the class path.

The default class path is the current directory. Setting the CLASSPATH variable or using the -classpath command-line option overrides that default, so if you want to include the current directory in the search path, you must include "." in the new settings. [source]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文