如何自动格式化java代码以添加大括号

时间:2015-12-30 06:47:45

标签: java eclipse

如何自动格式化java代码以在eclispe中添加大括号

if (type == null) {
    if (other.type != null)
        return false;
} else if (!type.equals(other.type))
    return false;

2 个答案:

答案 0 :(得分:1)

自动插入大括号 您必须在首选项中更新java编辑器,

enter image description here

答案 1 :(得分:0)

你没有指定你的操作系统,但通常遵循按键组合可以在eclipse中格式化代码:

Windows Os: CRTL + SHIFT + F

Mac Os: + + F

希望这会对你有所帮助。