在编写代码时,IDEA可以自动导入需要的包,可以提高开发的效率。
windows 环境设置
file -settings
MacOS X环境下设置如下:
- preference→Editor→General→Auto Import
- 选中Optimize imports on the fly和Add unambiguous imports on the fly; 点击apply 和OK键。
Optimize imports on the fly:自动去掉一些没有用到的包
Add unambiguous imports on the fly:自动帮我们优化导入的包
- 如果没有设置自动导入包的功能,可以用Alt+Enter 快捷键来手动导入包;
另外,有多个同名的类位于不同的包时,需要自己手动使用Alt + Enter进行导入。