假设我在Java
中有一行Eclipse
代码:
System.out.println(1);
但是如果某些条件成立,我决定只打印1
,所以我输入:
if(Math.random()<0.5) { //As an example
System.out.println(1);
}
输入if(Math.random()<0.5)
后,有没有办法自动插入{
和}
? (也许我可能需要预先缩进System.out.println(1)
以告诉算法将}
放在哪里。)
答案 0 :(得分:1)
简单方法是选择System.out.println(1);
语句并按 Shift + Alt + Z 然后选择{{1} } 选项。
然后在出现的小文本框中键入条件。输入条件后,按 Enter
参考下图