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 编程中找到所需的导入(或缺少的导入)?我知道在像 Eclipse 和 Netbeans 这样的现代编辑器中。但是我们必须在记事本中做java进行检查,这就是为什么。
例如,当我使用 Jframe 时,我想知道哪些是必需的导入。是否可以在目录或文件中找到“导入”的定义?
运行编译器javac,它会告诉您无法解析的类型(缺少此导入)。
javac
然后您可以使用API中的 javadoc 。左下角有 API 中类的完整列表。搜索该类并单击它,然后您就知道它在哪个包中。