想生成这样的:
/**
* 判断电话号码是否存在于数据表中
* @author ***
* @param phoneNumber
* @return Map
只要我们把鼠标点在要生成注释的方法名上,使用快捷键 ALT+SHIT+J ,就可以生成注释了,但是后面的内容还是要自己来填写的,如果鼠标在方法名以外,就会默认生成整个类的注释。
如果想生成下面的格式:
// System.out.println("hello");
// System.out.println("hello");
// System.out.println("hello");
// System.out.println("hello");
那么只需要选中多行,使用快捷键 CTRL+“/”或者CTRL+“7”,都可以直接生成或者去掉注释。
想要生成以下形式的注释(多行注释):
/* System.out.println("hello");
System.out.println("hello");
System.out.println("hello");
System.out.println("hello");*/
选中注释的行,ctrl + shfit + c。
要是想要取消注释,可以使用CTRL+SHIFT+\