Pair
public class Pair
extends Object
容器可以轻松地传递两个对象的元组。 这个对象提供了equals()的一个合理的实现,如果equals()对每个包含的对象都为true,则返回true。
Summary
Public constructors |
Pair(F first, S second) 一对的构造函数。 |
Fields
Public constructors
Pair
Pair (F first,
S second)
一对的构造函数。
Parameters |
first |
F : the first object in the Pair |
second |
S : the second object in the pair |
Public methods
create
Pair<A, B> create (A a,
B b)
用于创建适当类型的对的便捷方法。
Parameters |
a |
A : the first object in the Pair |
b |
B : the second object in the pair |
Returns |
Pair<A, B> |
a Pair that is templatized with the types of a and b |
equals
boolean equals (Object o)
通过委派他们各自的 equals(Object)
方法来检查两个对象是否相等。
Parameters |
o |
Object : the Pair to which this one is to be checked for equality |
Returns |
boolean |
true if the underlying objects of the Pair are both considered equal |
hashCode
int hashCode ()
使用底层对象的哈希代码计算哈希代码
Returns |
int |
a hashcode of the Pair |