关于Java中的import语句

发布于 2024-09-05 03:13:01 字数 262 浏览 7 评论 0原文

test.java

import javax.media;

从哪些目录搜索javax.media

我想那些由 javac -cp 指定的 CLASSPATH 中的内容当然会被搜索。

但它也会在test.java所在的目录中搜索吗?

还有其他可能被搜索的地方吗?

test.java:

import javax.media;

Which directories are javax.media searched from?

I suppose those in CLASSPATH specified by javac -cp will of course be searched.

But will it also search in the directory where test.java locates?

And are there any other possible places that will be searched?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

勿挽旧人 2024-09-12 03:13:01

请参阅您的编译器的规范。对于 sun 的 javac,搜索顺序在 中描述它的手册

根据手册详细信息的一些内容,CLASSPATH 环境变量中设置的路径中的类文件,设置 -classpath 命令行选项的路径中的类文件,源文件在 '-sourcepath选项的路径中,用户类路径中的源文件(如果未给出-sourcepath),以及 JVM 的默认引导和扩展路径或由-bootclasspath-extdirs`选项。

由于 javax.media 是 JVM 扩展,因此 javac 将在 JVM 的扩展目录中查找,或者在 -extdirs 提供的目录中查找,然后在用户类文件夹中查找,然后在用户源文件夹中查找。

Consult the specifications for your compiler. For sun's javac, the search order is described in its manual.

Depending on a few things the manual details, class files in the paths set in the CLASSPATH environment variable, class files in the paths set the -classpath command line option, source files in the paths from the '-sourcepathoption, source files in user classpath (if-sourcepathisn't given), and either the JVM's default boot and extension paths or the paths given by the-bootclasspathand-extdirs` options.

As javax.media is a JVM extension, javac would look either in the JVM's extensions directory, or that provided by -extdirs, then in user class folders, then in user source folders.

深海少女心 2024-09-12 03:13:01

简化版本是:它只是类路径中的目录和 jar,但人们通常会放置“.”。在它们的类路径中,这将允许以与任何其他类路径目录相同的方式搜索当前目录下的目录。

The simplified version is: It's only directories and jars in your classpath, but quite often people put "." in their classpath which would allow searching of directories under the current in the same way as any other classpath directory.

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