例如...`
Object o1 = new Object();
Object o2 = new Object();
Object o3 = new Object();
`
我想选择这些句子和 ALT + SHITFT + Z : sysout the localVal to Test 像这样:`
System.out.println(o1);
System.out.println(o2);
System.out.println(o3);
` 我怎样才能写出这样的模板?谢谢!