IntelliJ idea——》補全分號或大括號:Ctrl+Shift+Enter
阿新 • • 發佈:2018-12-20
版權宣告:本文為博主原創文章,無需授權即可轉載,甚至無需保留以上版權宣告,轉載時請務必註明作者。
https://blog.csdn.net/weixin_43453386/article/details/84941246
IntelliJ idea——》補全分號或大括號:Ctrl+Shift+Enter
1、 補全分號:Ctrl+Shift+Enter
public class T {
public static void main(String[] args) {
String jsonStr = "{\"name\":\"哥哥\",\"age\":12}";
if (jsonStr == null)
jsonStr = null;
}
}
2、補全大括號:滑鼠定位到if語句 ,Ctrl+Shift+Enter
public class T {
public static void main(String[] args) {
String jsonStr = "{\"name\":\"哥哥\",\"age\":12}" ;
if (jsonStr == null) {
jsonStr = null;
}
}
}