是否可以在任何Java IDE中折叠源代码中的类型定义?

时间:2010-12-31 12:10:05

标签: java ide folding

最近我经常要读这样的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);
    }
}

当然,最好的方法是折叠类型定义,但将鼠标移到变量上会将类型显示为工具提示。是否有IDE IDE或IDE插件可以执行此操作?

1 个答案:

答案 0 :(得分:5)

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)