如何更改 Eclipse 自动生成代码的缩进样式?
有什么方法可以更改 Eclipse 中自动生成的代码的缩进样式吗? 我想从 更改
class Test {
blah blah
}
为
class Test
{
blah blah
}
Is there any way to change indentation style for automatically generated code in Eclipse?
I'd like to change from
class Test {
blah blah
}
to
class Test
{
blah blah
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您更改了大括号的格式,所有新类都将根据该新格式生成:
If you do change the format of the brace, all new class will be generated according to that new format:
它位于最新 Eclipse 的“窗口 | 首选项”中。
It's in "Window | Preferences" in the latest eclipse.