我想知道是否有与eclipse相同的功能来自动生成和打印NetbeansSystem.out.println(ClassName::MethodName <then my message>)
中的功能(将打印类名和方法名以在控制台中进行调试)。
例如,在 Eclipse 编辑器中,键入
系统 + Ctrl+Space
将在控制台中自动生成 System.out.println(ClassName::MethodName) 类型的输出。
Netbeans 中是否有这种方法?
到目前为止,我在 Netbeans 中只有两种方法:
南 +Tab
(System.out.println()) 和
南方电视台+Tab
(System.out.println(打印在该行上方使用的变量))自动。
让我换个说法,而不是 myMethod1,我想获取封闭的方法名称。
例如。:
public class X {
public void myMethod1(int a) {
System.out.println(X::myMethod1()); // This should be produced when I type the Code-Template abbreviation (example: syst) and press tab (or corresponding key).
}
}
public class Y {
public void myMethod2(int b) {
System.out.println(Y::myMethod2()); // This should be produced when I type the Code-Template abbreviation (example: syst) and press tab (or corresponding key).
}
}
更新:
使用以下代码模板:
syst = System.out.println("${classVar editable="false" currClassName default="getClass()"}");
我可以打印类名,但仍然不知道方法名称。