我是新來Intellij想法,我試圖設置我的代碼風格的第一個地方。儘管如此,我試圖告訴Intellij Idea,爲了可讀性的原因,我想將簡單的try-catch塊作爲單行代碼。intellij想法簡潔簡單的嘗試catch塊
取而代之的是:
Statement statement = null;
if(statement!=null){
try{
statement.close();
}catch(Exception ex){
log.error(ex);
}
}
我它會自動格式化這樣:
Statement statement =null;
if(statement!=null){
try{statement.close();}catch(Exception ex){log.error(ex);}
}
非常感謝。我發現了一種類似的方式來爲定義的案例添加實時模板。 –