置頂 0%

Intellij 單行註解調整

我們想設定讓 Intellij 的註解可以起始在目前程式當前空格的地方,而不是在首行,可以這樣設定

開啟Settings後,由下路徑進到 Java 的 Code Generateion 這一分頁,把原本打勾的Line comment at first column取消,並把Add a space at line comment startEnforce on reformat打勾,這樣就會是註解在當前的程式碼位置,而不是首行。

File -> Settings -> Editor -> Code Style -> Java -> Code Generation(分頁) -> Comment Code

Intellij comment setting

1
2
3
4
// 設定前
// int sum = IntStream.of(arr).sum();
// 設定後
// int sum = Arrays.stream(arr).sum();