如何在IntelliJ IDEA中自动创建方法时粘贴自定义代码?

时间:2017-02-09 12:09:02

标签: java intellij-idea methods auto-generate

在IntelliJ IDEA中,我可以自动创建一个方法。 我写了方法的名称,如果它不存在,IDE会提示创建它。

我希望IDEA在自动创建新方法时将代码//TODO: write method ${nameOfMethod}粘贴到正文中。我怎么能这样做?

1 个答案:

答案 0 :(得分:5)

我找到了解决方案。 解决方案:

  1. 打开设置。
  2. 打开文件和代码模板。
  3. 打开新方法体。
  4. 粘贴代码://TODO: to write the method ${METHOD_NAME}
  5. enter image description here