How to make a template for sysout the multi-localVal
for Example...`
Object o1 = new Object();
Object o2 = new Object();
Object o3 = new Object();
`
I want to select these sentence and ALT + SHITFT + Z : sysout the localVal to Test
like this:
`
System.out.println(o1);
System.out.println(o2);
System.out.println(o3);
`
how can i write such a template? Thx! java template 模板 --------------------编程问答-------------------- 就是说我想写个模板 快速打印出 所选择的 每个类的 对象名~! --------------------编程问答-------------------- 找了下,没搞出来 --------------------编程问答-------------------- 555.. --------------------编程问答-------------------- 对象.getClass()可以获得对象的类名。 --------------------编程问答-------------------- 你没懂起我的意思喃
补充:Java , Java SE