NetBeans 有没有办法在单独的行中自动创建括号?
例如,当我创建一个新类时,我得到这样的信息:
/*
* 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
{
}
When I create a new class for instance, I get this:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package helloworld;
/**
*
* @author Sergio
*/
public class WordManipulations{
}
I hate it when brackets are placed this way. Is there a way to make it create things like this:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package helloworld;
/**
*
* @author Sergio
*/
public class WordManipulations
{
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需按照以下步骤操作:
Tools ->选项->编辑器
编辑器 ->格式
Simply follow these steps:
Tools -> Options -> Editor
Editor -> Formatting
还有 JIndent 插件。
Also there's the JIndent plugin.
在 Netbeans 中,转到工具 > 选项。然后选择格式化选项卡,并在语言下拉列表中选择Java。
现在有多种选项可以按照您喜欢的方式更改格式。
In Netbeans go to Tools > Options. Then select the Formatting tab and select Java under the language drop down.
There are now several options to change the formatting the way you like it.