我有这个代码,我想缩进:
int[] myArray =
{ 1, 2, 3, 4, 5, 6 };
int theInt = 1;
String someString = "Hello";
double aDouble = 3.0;
我希望上面的代码是缩进的列,如下所示:
int[] myArray = { 1, 2, 3, 4, 5, 6 };
int theInt = 1;
String someString = "Hello";
double aDouble = 3.0;
我尝试了不同的选项:
Windows > Preferences > Java > Code Style > Formatter
但我无法找到上述设置。
= 应放在对齐
的中心位置感谢您的回复。
答案 0 :(得分:2)
转到提及window->prefernces->java->codestyle->formatter
的相同链接,然后点击Edit
按钮。
并单击“对齐列中的字段” 看到图片
编辑:
您需要在同一链接上的eclipse中创建新的个人资料。你可以改变内置的eclipse配置文件。见图。
编辑: 保存操作:
答案 1 :(得分:0)
您可以使用
在eclipse中CTRL + SHIFT + F
获取上面提到的格式,你也可以使用
CTRL + A然后按CTRL + I
在eclipse中有正确的缩进。
谢谢, Ankit Shah