我想创建一个新项目,类似于Util.Map.Entry,它将包含结构键,值。
问题是我不能实例化一个Map。因为它是一个接口。
有人知道如何为Map.Entry创建一个新的通用键/值对象吗?
我想创建一个新项目,类似于Util.Map.Entry,它将包含结构键,值。
问题是我不能实例化一个Map。因为它是一个接口。
有人知道如何为Map.Entry创建一个新的通用键/值对象吗?
当前回答
为什么map . entry ?我想类似键值对的东西适合这种情况。
使用java.util.AbstractMap.SimpleImmutableEntry或java.util.AbstractMap.SimpleEntry
其他回答
AbstractMap示例。SimpleEntry:
import java.util.Map;
import java.util.AbstractMap;
import java.util.AbstractMap.SimpleEntry;
实例化:
ArrayList<Map.Entry<Integer, Integer>> arr =
new ArrayList<Map.Entry<Integer, Integer>>();
添加行:
arr.add(new AbstractMap.SimpleEntry(2, 3));
arr.add(new AbstractMap.SimpleEntry(20, 30));
arr.add(new AbstractMap.SimpleEntry(2, 4));
获取行:
System.out.println(arr.get(0).getKey());
System.out.println(arr.get(0).getValue());
System.out.println(arr.get(1).getKey());
System.out.println(arr.get(1).getValue());
System.out.println(arr.get(2).getKey());
System.out.println(arr.get(2).getValue());
应该打印:
2
3
20
30
2
4
它很好地定义了图结构的边。就像你大脑中神经元之间的那些。
为什么map . entry ?我想类似键值对的东西适合这种情况。
使用java.util.AbstractMap.SimpleImmutableEntry或java.util.AbstractMap.SimpleEntry
如果你看一下Map的文档。Entry你会发现它是一个静态接口(在Map接口中定义的接口,可以通过Map.Entry访问),它有两个实现
所有已知的实现类: AbstractMap。SimpleEntry AbstractMap。SimpleImmutableEntry
类AbstractMap。SimpleEntry提供了2个构造函数:
构造函数和描述 AbstractMap。SimpleEntry(K键,V值) 属性的映射 指定的值。 AbstractMap.SimpleEntry (map . entry < ?扩展了K, ?扩展V>条目) 创建表示与指定项相同映射的项。
一个示例用例:
import java.util.Map;
import java.util.AbstractMap.SimpleEntry;
public class MyClass {
public static void main(String args[]) {
Map.Entry e = new SimpleEntry<String, String>("Hello","World");
System.out.println(e.getKey()+" "+e.getValue());
}
}
我定义了一个通用的Pair类,我一直在使用它。太棒了。作为一个额外的好处,通过定义静态工厂方法(Pair.create),我只需要把写类型参数的次数减少一半。
public class Pair<A, B> {
private A component1;
private B component2;
public Pair() {
super();
}
public Pair(A component1, B component2) {
this.component1 = component1;
this.component2 = component2;
}
public A fst() {
return component1;
}
public void setComponent1(A component1) {
this.component1 = component1;
}
public B snd() {
return component2;
}
public void setComponent2(B component2) {
this.component2 = component2;
}
@Override
public String toString() {
return "<" + component1 + "," + component2 + ">";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((component1 == null) ? 0 : component1.hashCode());
result = prime * result
+ ((component2 == null) ? 0 : component2.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final Pair<?, ?> other = (Pair<?, ?>) obj;
if (component1 == null) {
if (other.component1 != null)
return false;
} else if (!component1.equals(other.component1))
return false;
if (component2 == null) {
if (other.component2 != null)
return false;
} else if (!component2.equals(other.component2))
return false;
return true;
}
public static <A, B> Pair<A, B> create(A component1, B component2) {
return new Pair<A, B>(component1, component2);
}
}
从Java 9开始,有一个新的实用工具方法允许创建一个不可变的条目,即map# entry(Object, Object)。
这里有一个简单的例子:
Entry<String, String> entry = Map.entry("foo", "bar");
由于它是不可变的,调用setValue将抛出UnsupportedOperationException。其他的限制是它是不可序列化的,并且禁止将null作为键或值,如果您不能接受它,您将需要使用AbstractMap。SimpleImmutableEntry或AbstractMap。SimpleEntry代替。
注意:如果你需要直接创建一个0到10个(键,值)对的Map,你可以使用Map类型的方法。(K键1,V值1,…)