概述
前言
之前再开发过程中, 发现有2个Pair
类, 2个Pair类之间还是有一些差别和联系的, 将考究内容记录于此.
PS: 后续, 我们可以探究下Tuplate
三元组和多元组.
Pair类解析
javafx.util.Pair
Java原生Pair类
基本使用Demo.
package com.yanxml.util.pair.demo;
import javafx.util.Pair;
/**
* Pair 相关使用. Demo1
* @author seanYanxml
* @date 2022-02-28 00:00:00
*/
public class PairInstanceDemo1 {
public static void main(String[] args) {
// 创建
Pair createPair = new Pair<String, String>("abc","bcd");
// 获取左边值
System.out.println("key:" + createPair.getKey());
// 获取右边值
System.out.println("Value:" + createPair.getValue());
// Pair 创建完成后. 无法修改.
}
}
预计输出:
key:abc
Value:bcd
详解
通过结构, 我们可以发现. 这个类就这些基本成员和方法. 其中最主要的就是 构造函数
getKey
和 getValue
这3个方法.
package javafx.util;
import java.io.Serializable;
import javafx.beans.NamedArg;
/**
* <p>A convenience class to represent name-value pairs.</p>
* @since JavaFX 2.0
*/
public class Pair<K,V> implements Serializable{
/**
* Key of this <code>Pair</code>.
*/
private K key;
/**
* Gets the key for this pair.
* @return key for this pair
*/
public K getKey() { return key; }
/**
* Value of this this <code>Pair</code>.
*/
private V value;
/**
* Gets the value for this pair.
* @return value for this pair
*/
public V getValue() { return value; }
/**
* Creates a new pair
* @param key The key for this pair
* @param value The value to use for this pair
*/
public Pair(@NamedArg("key") K key, @NamedArg("value") V value) {
this.key = key;
this.value = value;
}
/**
* <p><code>String</code> representation of this
* <code>Pair</code>.</p>
*
* <p>The default name/value delimiter '=' is always used.</p>
*
* @return <code>String</code> representation of this <code>Pair</code>
*/
@Override
public String toString() {
return key + "=" + value;
}
/**
* <p>Generate a hash code for this <code>Pair</code>.</p>
*
* <p>The hash code is calculated using both the name and
* the value of the <code>Pair</code>.</p>
*
* @return hash code for this <code>Pair</code>
*/
@Override
public int hashCode() {
// name's hashCode is multiplied by an arbitrary prime number (13)
// in order to make sure there is a difference in the hashCode between
// these two parameters:
// name: a value: aa
// name: aa value: a
return key.hashCode() * 13 + (value == null ? 0 : value.hashCode());
}
/**
* <p>Test this <code>Pair</code> for equality with another
* <code>Object</code>.</p>
*
* <p>If the <code>Object</code> to be tested is not a
* <code>Pair</code> or is <code>null</code>, then this method
* returns <code>false</code>.</p>
*
* <p>Two <code>Pair</code>s are considered equal if and only if
* both the names and values are equal.</p>
*
* @param o the <code>Object</code> to test for
* equality with this <code>Pair</code>
* @return <code>true</code> if the given <code>Object</code> is
* equal to this <code>Pair</code> else <code>false</code>
*/
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o instanceof Pair) {
Pair pair = (Pair) o;
if (key != null ? !key.equals(pair.key) : pair.key != null) return false;
if (value != null ? !value.equals(pair.value) : pair.value != null) return false;
return true;
}
return false;
}
}
通过上述代码可以发现, Pair的左右都是通过2个Object来完成的, 和我们平常使用的类定义的成员变量并无区别.
但是, 值得注意的是. Pair是无修改方法的, 也就是说. 当Pair声明后, 其中的变量就不可变了.
org.apache.commons.lang3.tuple.Pair
lang3包内的Pair类
看过了Java元素的Pair包, 我们再看下lang3
的Pair类是如何定义的.
- demo方法
package com.yanxml.util.pair.demo;
import org.apache.commons.lang3.tuple.Pair;
/**
* Pair 相关使用. Demo2
* @author seanYanxml
* @date 2022-02-28 00:00:00
*/
public class PairInstanceDemo2 {
public static void main(String[] args) {
Pair<String, String> demoPair = Pair.of("hello", "world");
// 获取
System.out.println("Key:" + demoPair.getKey());
System.out.println("Value:" + demoPair.getValue());
// 左右获取
System.out.println("Left:" + demoPair.getLeft());
System.out.println("Right:" + demoPair.getRight());
// 更新值 会抛出异常.
demoPair.setValue("123");
}
}
- 测试结果
Key:hello
Value:world
Left:hello
Right:world
Exception in thread "main" java.lang.UnsupportedOperationException
at org.apache.commons.lang3.tuple.ImmutablePair.setValue(ImmutablePair.java:100)
at com.yanxml.util.pair.demo.PairInstanceDemo2.main(PairInstanceDemo2.java:24)
通过测试结果我们可以发现. 此Pair类, 除了声明的方式不同外, 其与原生的Pair毫无区别.
并且, 我们试图修改Pair内的对象时, 还会抛出异常.
org.apache.commons.lang3.tuple.Pair
源码解析
- org.apache.commons.lang3.tuple.Pair
- org.apache.commons.lang3.tuple.ImmutablePair
下面我们分别看下源码. 会看到一个非常有意思的地方.
package org.apache.commons.lang3.tuple;
import java.io.Serializable;
import java.util.Map.Entry;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.builder.CompareToBuilder;
public abstract class Pair<L, R> implements Entry<L, R>, Comparable<Pair<L, R>>, Serializable {
private static final long serialVersionUID = 4954918890077093841L;
public Pair() {
}
public static <L, R> Pair<L, R> of(L left, R right) {
return new ImmutablePair(left, right);
}
public abstract L getLeft();
public abstract R getRight();
public final L getKey() {
return this.getLeft();
}
public R getValue() {
return this.getRight();
}
public int compareTo(Pair<L, R> other) {
return (new CompareToBuilder()).append(this.getLeft(), other.getLeft()).append(this.getRight(), other.getRight()).toComparison();
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
} else if (!(obj instanceof Entry)) {
return false;
} else {
Entry<?, ?> other = (Entry)obj;
return ObjectUtils.equals(this.getKey(), other.getKey()) && ObjectUtils.equals(this.getValue(), other.getValue());
}
}
public int hashCode() {
return (this.getKey() == null ? 0 : this.getKey().hashCode()) ^ (this.getValue() == null ? 0 : this.getValue().hashCode());
}
public String toString() {
return "" + '(' + this.getLeft() + ',' + this.getRight() + ')';
}
public String toString(String format) {
return String.format(format, this.getLeft(), this.getRight());
}
}
package org.apache.commons.lang3.tuple;
public final class ImmutablePair<L, R> extends Pair<L, R> {
private static final long serialVersionUID = 4954918890077093841L;
public final L left;
public final R right;
public static <L, R> ImmutablePair<L, R> of(L left, R right) {
return new ImmutablePair(left, right);
}
public ImmutablePair(L left, R right) {
this.left = left;
this.right = right;
}
public L getLeft() {
return this.left;
}
public R getRight() {
return this.right;
}
public R setValue(R value) {
throw new UnsupportedOperationException();
}
}
在Pair方法内, 我们可以看到其构造函数主要有2个.
# Pair 类
public Pair() {
}
public static <L, R> Pair<L, R> of(L left, R right) {
return new ImmutablePair(left, right);
}
# ImmutablePair 类
public final class ImmutablePair<L, R> extends Pair<L, R> {
private static final long serialVersionUID = 4954918890077093841L;
public final L left;
public final R right;
public static <L, R> ImmutablePair<L, R> of(L left, R right) {
return new ImmutablePair(left, right);
}
public ImmutablePair(L left, R right) {
this.left = left;
this.right = right;
}
}
其实我们经常使用的Pair.of()
, 真实的实例化使用的是ImmutablePair
, 也就是不可变的Pair类. 这也解释了为什么我们在执行set方法时, 会抛出异常.
# ImmutablePair 类 中
public R setValue(R value) {
throw new UnsupportedOperationException();
}
还有一处比较有意思的一点是, 这个Pair类, 虽然提供了set方法, 但是执行此方法, 会给我们抛出异常. 这也是我们之前测试代码中的相关异常.
总结
本章, 主要介绍了2种Pair类的相关使用方式, 并且查看了相关源码. 我们可以得出如下差异点:
共同点
- 使用泛型进行定义.
class Pair<K,V>
, 这样可以体现泛型的好处, 容易扩展. - 定义后的Pair内, 只有
get
方法, 而无set
方法.
不同点
- 声明对象的方式有所不同. 其实本质并无差别.
- Java原生的Pair类, 需使用
new Pair<K,V> (key,value)
这样的方式进行声明. - Lang3的Pair类, 常使用
Pair.of(key,value)
进行声明.
- Java原生的Pair类, 需使用
- Lang3的Pair类, 除
getKey/getValue
方法外, 会额外提供getLeft/getRight
这一对方法.
Reference
[源码] [javafx.util.Pair]
[源码] [org.apache.commons.lang3.tuple.Pair]
最后
以上就是无私胡萝卜为你收集整理的[Java基础] 2个Pair工具类比较的全部内容,希望文章能够帮你解决[Java基础] 2个Pair工具类比较所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复