每个想要使用java.util.logging的类通常都需要声明一个这样的记录器:
public class MyClass { private static Logger _log = Logger.getLogger(MyClass.class.getName()); }
你如何避免这个MyClass.class.getName()样板代码?
我在Eclipse中设置了一个模板,因此我只需要输入声明的一部分,然后Eclipse将自动为我完成剩下的部分.
${:import(org.apache.log4j.Logger)} private final static Logger log = Logger.getLogger(${enclosing_type}.class); ${cursor}
所以,我只需要输入logger
,点击Ctrl+Space
,然后按Enter
,然后Eclipse填写其余内容并添加导入声明.
这不会减少样板代码的数量,但至少会减少击键量.