gpt4 book ai didi

eclipse - 为什么 Eclipse 总是在 JavaDoc 中的 @param myParameter 之后换行?

转载 作者:行者123 更新时间:2023-12-04 01:52:06 26 4
gpt4 key购买 nike

我有这段 Java 代码:

/**
* Initializes the Levenshtein Object with the two given words.
*
* @param word1 first word
* @param word2 second word
*/
public Levenshtein(String word1, String word2) {
this.word1 = "." + word1.toLowerCase();
this.word2 = "." + word2.toLowerCase();
this.distance = new int[this.word2.length()][this.word1
.length()];
}

如果我按 Ctrl + Shift + F,我会得到这个:
/**
* Initializes the Levenshtein Object with the two given words.
*
* @param word1
* first word
* @param word2
* second word
*/
public Levenshtein(String word1, String word2) {
this.word1 = "." + word1.toLowerCase();
this.word2 = "." + word2.toLowerCase();
this.distance = new int[this.word2.length()][this.word1
.length()];
}

为什么 eclipse 会做这种婴儿车换行?我该如何切换它(而不完全切换 JavaDoc)?

这些是 Formatter settings我目前在 eclipse 3.5.2 (Galileo) 中使用。

最佳答案

窗口 > 首选项 > Java > 代码样式 > 格式化程序
(编辑)> 评论
复选框:@param 标签后的新行

见于朱诺 (4.2)。

关于eclipse - 为什么 Eclipse 总是在 JavaDoc 中的 @param myParameter 之后换行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13702309/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com