在任何Java IDE中是否可以折叠源代码中的类型定义?
作者:互联网
最近,我经常不得不阅读这样的Java代码:
LinkedHashMap<String, Integer> totals = new LinkedHashMap<String, Integer>(listOfRows.get(0))
for (LinkedHashMap<String, Integer> row : (ArrayList<LinkedHashMap<String,Integer>>) table.getValue()) {
for(Entry<String, Integer> elem : row.entrySet()) {
String colName=elem.getKey();
int Value=elem.getValue();
int oldValue=totals.get(colName);
int sum = Value + oldValue;
totals.put(colName, sum);
}
}
由于冗长和嵌套的类型定义,简单的算法变得很模糊.因此,我希望可以使用IDE删除或折叠类型定义,以查看不带以下类型的Java代码:
totals = new (listOfRows.get(0))
for (row : table.getValue()) {
for(elem : row.entrySet()) {
colName=elem.getKey();
Value=elem.getValue();
oldValue=totals.get(colName);
sum = Value + oldValue;
totals.put(colName, sum);
}
}
最好的方法当然是折叠类型定义,但是将鼠标移到变量上时,将类型显示为工具提示.是否有Java IDE或IDE插件可以做到这一点?
解决方法:
IntelliJ IDEA会将声明右侧的类型转换为<〜>.以便:
Map<Integer, String> m = new HashMap<Integer, String>();
将折叠为:
Map<Integer, String> m = new HashMap<~>();
可通过“编辑器” /“代码折叠” /“通用构造函数和方法参数”属性进行设置,并且community edition of the IDE是免费的.
或者,您可以使用具有类型推断的Scala:
val totals = new mutable.Map[String, Int]
for {
row <- table.getValue
(colName, value) <- row.entrySet
} totals += (colName -> (value + totals.get(colName) getOrElse 0)
标签:folding,ide,java 来源: https://codeday.me/bug/20191023/1914372.html