gpt4 book ai didi

java - TreeBasedTable 的 Guava TreeRow 没有排序,尽管它实现了 SortedMap?

转载 作者:行者123 更新时间:2023-12-01 15:16:41 26 4
gpt4 key购买 nike

这是设计使然吗?

Map<String, Map<String, String>> rowMap = treeTable.rowMap();
Map<String, String> notSortedTreeRow = rowMap.get(rowId);

这样你就可以对 rowMap 进行排序(如 SortedMap),但不能对 notSortedTreeRow (TreeRow) 进行排序,即 [column, value] ?

编辑:这是我的错,我有一个整数的字符串表示,我的印象是数字字符串是根据数值进行比较的:-)

如果我过度简化它,会是这样的:

TreeBasedTable<String, String, String> table = TreeBasedTable.create();

table.put("1", "8", "x");
table.put("1", "9", "x");
table.put("1", "10", "x");

Map<String,String> map = table.rowMap().get("1");

最佳答案

就这样做:

SortedMap<String, String> sortedRow = (SortedMap<String, String>) rowMap.get(rowId);

因为它 TreeRow 对象实例,它是SortedMap。由 RowSortedTable 保证接口(interface),并且它不会覆盖 Table's rowMap争论,因为这在 Java 中是不可能的。

编辑:

在这里回答原来的问题:

Is this by design?

是的,这是 Java 设计的。

关于java - TreeBasedTable 的 Guava TreeRow 没有排序,尽管它实现了 SortedMap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11504676/

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