- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<小时/>
编辑:问题已解决:请参阅 Karim SNOUSSI 的答案和我在下面的评论。
<小时/>这是我在堆栈溢出时遇到的第一个问题,所以我可能不会一开始就把所有事情都做对。对此感到抱歉。此外,我对 Java 和一般编程都是新手。
我遇到了一个奇怪的错误,无法真正理解解决方案。
当尝试将 hashMap 从一个类传递到另一个类时,IDE Eclipse 会显示:类型不匹配:无法从 HashMap> 转换为 HashMap>
但是如果我正确的话,两者都是同一类型,所以不知道问题出在哪里。
这是我的代码:我只发布了其中的一部分,因此不会弄乱
我的类中有一个名为 graph.class 的 HashMap,它用在方法 public HashMap> getAllShortestPaths() 中其中将计算图中从每个节点到任何其他节点的所有最短路径并存储到 hashMap 中以供进一步处理。效果很好,当将 map 打印到屏幕上时,如果我想从其中的方法执行此操作,它会正确显示所有信息。
但我的目的是将此 hashMap 传递给另一个类,我将在其中收集对图表的整个分析并将其保存到新文件中。
public class Graph {
.
.
private HashMap<Integer, ArrayList<Integer>> shortestPathsMap = new HashMap<Integer, ArrayList<Integer>>();
。。.
public HashMap<Integer, ArrayList<Integer>> getShortestPathsMap() { return shortestPathsMap; }
.
.
.
public void getAllShortestPaths() {
for(int i = 0; i < getNodeCount(); i++) {
ArrayList<Integer> shortestPathMapValues = new ArrayList<>(); // saves ...
for(int n = i; n < getNodeCount(); n++) {
shortestPathMapValues.add(n); // the corresponding node id's and ..
shortestPathMapValues.add((int) shortestPath(i,n)); // the outcome of shortestPath() calculation
}
shortestPathsMap.put(i, shortestPathMapValues); // saves the first node id and the corresponding values
}
}
.
.
因此,为了测试,我将其传递给 Main.class 并确实想将其打印到屏幕上:
public HashMap<Integer, ArrayList<Integer>> getShortestPathsMap() {
return shortestPathsMap;
}
public class Main {
public static void main(String[] args) {
.
.
.
G.getAllShortestPaths();
HashMap<Integer, ArrayList<Integer>> spMap = new HashMap<Integer, ArrayList<Integer>>();
spMap = G.getShortestPathsMap();
// iterate and display values
for(Entry<Integer, ArrayList<Integer>> entry : spMap.entrySet()) {
int key = entry.getKey();
ArrayList<Integer> values = entry.getValue();
System.out.println("Key = " + key);
System.out.println("Values = " + values);
}
.
.
.
在 Main.class 中的以下行:spMap = G.getShortestPathsMap();IDE 显示
Type mismatch: cannot convert from HashMap> to HashMap>
但是:
HashMap<Integer, ArrayList<Integer>> spMap = new HashMap<Integer,Integer, ArrayList<Integer>>();
HashMap<Integer, ArrayList<Integer>> shortestPathsMap = new HashMap<Integer, ArrayList<Integer>>();
spMap 和shortestPathsMap 具有相同的Typ,不是吗?
我很高兴收到任何有帮助的回复,并提前感谢您。
最佳答案
尝试在您的主要方法中替换它
HashMap<Integer, ArrayList<Integer>> spMap = new HashMap<Integer, ArrayList<Integer>>();
spMap = G.getShortestPathsMap();
有了这个
Map<Integer, ArrayList<Integer>> spMap = G.getShortestPathsMap();
关于Java - 类型不匹配(但两者都来自相同类型?!) : cannot convert from HashMap<Integer, ArrayList<Integer>> 到 HashMap<Integer,ArrayList<Integer>>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59474132/
我有不同的结构,它们都包含一个 HashMap与 String作为键,但具有不同的值类型。例如,一个结构有一个类型为 HashMap 的成员, 另一个将有一个 HashMap 类型的成员, 等等。 我
我想制作一个包含学生姓名和科目的板,每个学生在每个科目中都有一个成绩(或者没有..他可以离开考试而不写,然后他的案子将是空的)。我只想使用 HashMap。我的意思是,它会是这样的: HashMap>
是否有内存和速度高效的方法来在 HashMap 中动态存储唯一键:值对? key 保证是唯一的,但它们的数量经常变化。插入和删除必须很快。 我所做的是包含有符号距离场的八叉树(非线性/完整)。八叉树经
有谁知道为什么选择通过 LinkedList 而不是另一个 Hashmap 来实现 HashMap 的存储桶。如果桶本身变成了 HashMap,那么 contains 或 get 的时间复杂度似乎是
我想创建一个具有嵌套结构的 HashMap,就像这个复杂的示例: { type: boy name: Phineas father: type: man
这个问题在这里已经有了答案: How do I create a global, mutable singleton? (7 个答案) 关闭 7 年前。 我想要一个可扩展的字典,将 Object 与
HashMap> hm = new HashMap>(); hm.put("Title1","Key1"); for(int i=0;i hm1 = new H
我必须修改当前代码以适应 Spring MVC。我有 HashMap hashmap = new HashMap(); request.setAttribute("dslrErrors", hashm
我正在尝试进行一些错误捕获。 错误应该检查数组的长度是否小于 2,并检查 HashMap 是否包含用户输入的键。 捕获的错误必须仅使用 if 语句,并且必须使用 .length() 方法,并且必须使用
在 stackoverflow 上提出另一个问题后,(Java- Why this program not throwing concurrent Modification exception)我开始
我有两个类,想使用 org.dozer.Mapper( http://dozer.sourceforge.net/ ) 将 Female 对象的属性映射到 Male 对象。 第一类是: public
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
是否有任何方法可以检查 HashMap 是否包含一组特定的键(这些键是在数组中给出的)。当我尝试类似下面的代码时,它返回 false。 map.containsKey(arrayOf("2018-01
跟进我的问题:How To Access hash maps key when the key is an object 我想尝试这样的事情:webSearchHash.put(xfile.getPa
我有一个可扩展的 ListView ,对于每个 child ,我需要有 4 个“额外”或字符串或其他名称来调用它:- 子标题- 描述- 链接1- 链接2 跟着教程,创建 ListView 、不同的 p
我想确保这是正确的,因为如果不正确,它可能会破坏我的应用程序。 我有这个: private static HashMap> balance = new HashMap<>(); 如果我得到这样的值:
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我是一名优秀的程序员,十分优秀!