当前位置:网站首页>>>开发工具:IDEA格式化代码无效

>>开发工具:IDEA格式化代码无效

2022-08-11 05:22:00 六月暴雪飞梨花

IDEA是一个很好使用的工具,在日常开发中经常使用,快捷键也是一个很好的节约开发时间的工具,在日常开发中也经常使用。如果快捷键假性失灵,不仅仅影响开发心情,也让有强迫症的人看着不舒服。我这里出现的情况虽然快捷键也可以使用,但是格式后的位数不是以前的默认的那种。

1、假性失灵后的效果

失灵后的快捷键格式化代码(快捷键:option(⌥) + command(⌘) + L

public class Test02 {
    
  public final int value = 4;
  public void doIt() {
    
    final int value = 6;
    new Runnable() {
    
      final int value = 5;
      @Override
      public void run() {
    
        final int value = 10;
        System.out.println(this.value);
      }
    }.run();
  }
  public static void main(String[] args) {
    
    Test02 test02 = new Test02();
    test02.doIt();
  }
}

使用的默认的配置(在Settings/Preferences对话框中,Editor > Code Style > Java 中配置Tabs and Indents),如图:
在这里插入图片描述

2、实际想要的效果

实际想要的还原的默认的效果:

public class Test02 {
    

    public final int value = 4;

    public void doIt() {
    
        final int value = 6;
        new Runnable() {
    
            final int value = 5;

            @Override
            public void run() {
    
                final int value = 10;
                System.out.println(this.value);
            }
        }.run();
    }

    public static void main(String[] args) {
    
        Test02 test02 = new Test02();
        test02.doIt();
    }
}

3、解决方案

按照官网说的的设置了几次,也百度了几次,始终没有找到想要的效果。本想着应该可以还原这些配置,就找了下如何还原这个配置,功夫不负有心人,在一篇其他文章找到了还原方法,具体还原方式如下:
路径:File > Manage IDE Settings > Restore Default Settings...,点击一下就还原到默认的设置,但是其他的一些设置也会被还原,需要重新设置一下。
在这里插入图片描述

备注:IDEA版本:IntelliJ IDEA 2021.3.3 (Ultimate Edition)

原网站

版权声明
本文为[六月暴雪飞梨花]所创,转载请带上原文链接,感谢
https://blog.csdn.net/L_Lycos/article/details/125399779