在Eclipse中注释/取消注释特定格式

时间:2016-02-25 18:36:31

标签: java eclipse

在Eclipse中我如何评论&取消注释下面显示的特定格式的Java代码?

即使在Stack Overflow上,我也找不到合适的答案?

/*
 * public class HelloWorld {
 *
 *   public static void main (String[] args) {
 *       // Prints "Hello, World" to the terminal window.
 *      System.out.println("Hello, World");
 *   }
 *
 *}
 */

2 个答案:

答案 0 :(得分:2)

没有内置的快捷方式以这种方式进行评论。最相似的方法是选择您想要评论的代码并使用

Ctrl + Shift + /

哪个块注释,但不会在左侧添加额外的星号行。

答案 1 :(得分:0)

在Eclipse中,注释掉的快捷方式是Ctrl + Shift + c。在使用快捷方式之前,请确保选择需要注释掉的行。