Pair的使用

Pair的使用,第1张

Pair的使用

Pair类的基本使用
一,需要依赖的maven包:


   org.apache.commons
   commons-lang3
   3.12.0

注:版本不是必需,根据自己的情况选择

二,基本使用

Pair pair = Pair.of("zhangsan",12);
String s = pair.getKey();
int i = pair.getValue();
System.out.println(s+","+i);
String l = pair.getLeft();
int r = pair.getRight();
System.out.println(l+","+r);

返回结果:
zhangsan,12
zhangsan,12

三,源码解读

public abstract class Pair implements Entry, Comparable>, Serializable {
    private static final long serialVersionUID = 4954918890077093841L;
    public static final Pair[] EMPTY_ARRAY = new Pair.PairAdapter[0];

    public Pair() {
    }

    public static  Pair[] emptyArray() {
        return (Pair[])EMPTY_ARRAY;
    }

    public static  Pair of(L left, R right) {
        return ImmutablePair.of(left, right);
    }

    public static  Pair of(Entry pair) {
        return ImmutablePair.of(pair);
    }

    public int compareTo(Pair 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 Objects.equals(this.getKey(), other.getKey()) && Objects.equals(this.getValue(), other.getValue());
        }
    }

    public final L getKey() {
        return this.getLeft();
    }

    public abstract L getLeft();

    public abstract R getRight();

    public R getValue() {
        return this.getRight();
    }

四,总结
以上是Pair的基本使用,感觉Pair还挺方便的,终于可以在方法中返回两个结果了,不需要多写一个方法了。但是,个人建议还是少用为好,因为在项目中,我们都是多人协同开发,肯定会有你调用我写的方法,或者我调用你写的方法,在调用的过程中,你给我返了一个我不需要的数据,还得我做一些处理,这样无论是在代码的冗余度,还是效率上都不是很友好。所以说还是一个方法返回一个值,尽量做到一个方法只干一件事。如果是自己写的一些小工具,自己用的那就无所谓这些了。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5717228.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存