NetBeans 有没有办法在单独的行中自动创建括号?

2022-09-02 08:55:10

例如,当我创建一个新类时,我得到这个:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package helloworld;

/**
 *
 * @author Sergio
 */
public class WordManipulations{        
}

讨厌以这种方式放置括号。有没有办法让它创建这样的东西:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package helloworld;

/**
 *
 * @author Sergio
 */
public class WordManipulations 
{

}

答案 1

只需按照以下步骤操作:

  1. 导航到Tools -> Options -> Editor
  2. 导航到Editor -> Formatting
  3. 选择以下选项
    • 语言: 爪哇
    • 类别: 牙套
  4. 在“类声明、方法声明等”中
    • 大括号位置:新行

答案 2

还有JIndent插件。


推荐