龙空技术网

IDEA 取消自动import .*

爱音乐的程序员小新人 283

前言:

此时你们对“idea 自动import”大致比较着重,姐妹们都需要分析一些“idea 自动import”的相关知识。那么小编在网络上搜集了一些对于“idea 自动import””的相关文章,希望咱们能喜欢,你们快快来学习一下吧!

打开设置 > Editor > Code Style > Java > Scheme Default > Imports

① 将 Class count to use import with "*" 改为 99 (导入同一个包的类超过这个数值自动变为 * )

② 将 Names count to use static import with "*" 改为 99 (同上,但这是静态导入的)

③ 将 Package to Use import with "*" 删掉默认的这两个包 (不管使用多少个类,只要在这个列表里都会变为 * )

PS:Scheme Default 是针对全局的,你也可以只修改某个Project的

标签: #idea 自动import