如果我将类保存在默认包中,我只能访问引用的库类.如果我尝试从任何其他包访问它,我得到“className无法解析”.任何想法为什么会发生这种情况
解决方法
该软件包来自普林斯顿大学IntroCS课程的标准库.
如果您按照页面上的常见问题解答
http://introcs.cs.princeton.edu/java/stdlib/
Q. If I use a named package to structure my code,the compiler can no
longer access the libraries in stdlib.jar. Why not?
A. The libraries
in stdlib.jar are in the “default” package. In Java,you can’t access
classes in the default package from a named package. If you need to
use our libraries with a named package,you can use the packaged
version stdlib-package.jar.
下载包jar文件:
http://introcs.cs.princeton.edu/java/stdlib/stdlib-package.jar
import edu.princeton.cs.introcs.*;
将上面的行添加到需要引用类的类中.
第一行引用正确的包名称,*通配符会导入其中的所有类.
希望有帮助.