Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有可运行的java类:
java my.package.Test
Test.class 在文件夹中./my/package
./my/package
问题是如果它在当前文件夹中,我该如何运行这个类(不./my/package存在)
谢谢
说你的班级在
package my.pack; // package is not an acceptable word in the package path
那么您必须提供完全限定的类名(带有包路径)来运行它,并且该路径必须存在于文件系统(或执行的 jar 中)。
问题是如果它在当前文件夹中,我如何运行这个类(不存在 ./my/package)
如果该类被声明为在该包中,则不能。