我有以下代码:

public int doBam(int bam) {
    if(foo) {
        bam += 1;
        if(bar) {
            bam += 1;
        }
    }
    return bam;
}

我想注释掉if(bar) ...
当我在Eclipse 3.6中切换注释时,我将得到以下信息:
public int doBam(int bam) {
    if(foo) {
        bam += 1;
//        if(bar) {
//            bam += 1;
//        }
    }
    return bam;
}

我可以让Eclipse像这样切换评论吗?
public int doBam(int bam) {
    if(foo) {
        bam += 1;
        //if(bar) {
        //    bam += 1;
        //}
    }
    return bam;
}

最佳答案



这是一个三步过程。

步骤1:-选择所需的代码。

if(bar) {
  bam += 1;
}

步骤2:-按下 Control + 7 Control + /
//    if(bar) {
//      bam += 1;
//    }

步骤3:-按下 Control + Shift + F
   // if(bar) {
   // bam += 1;
   // }

更新



像评论一样,取消评论也是三个步骤:
  • 选择
  • 控制+ /
  • Ctrl + Shift + F



  • 您可以更改这些格式规则。 Windows->首选项-> Java->代码样式->格式化程序->编辑->注释选项卡。

    Eclipse不允许编辑默认的内置概要文件。创建新的配置文件并继承内置配置文件的所有属性,然后可以自定义新创建的配置文件。

    10-08 12:21