在eclipse快捷方式中取消注释java代码

时间:2015-10-03 07:16:53

标签: java eclipse

我使用快捷键 Ctrl + Shift + / 对我的java代码多行注释。然后它会是这样的:

 /*
 * System.out.println("shree"); test123 t = new test123();
 * 
 * int result = t.Mult(5, 5); System.out.println(result);
 */

但是当我试图取消注释时,它看起来像这样。要取消注释,我使用 Ctrl + Shift + \

 * System.out.println("shree"); test123 t = new test123();
 * 
 * int result = t.Mult(5, 5); System.out.println(result);

我的问题是,当我使用快捷方式取消注释多行的java代码时,初始/*和结束*/将在每个行之前进行*(星号)线路不会去。我必须手动删除它,这很费时间。

所以有任何捷径可以给我一个解决方案并节省我的时间。

1 个答案:

答案 0 :(得分:0)

您可以使用 CTRL + SHIFT + C 来评论/取消注释每个选定内容,而不是像/* some commented code */那样发表评论使用//

分开的行

我目前正在使用Eclipse Mars,但它也曾在Luna中以这种方式工作。