gpt4 book ai didi

Java:如何在列表中存储数据三元组?

转载 作者:IT老高 更新时间:2023-10-28 20:49:41 37 4
gpt4 key购买 nike

在 java 中将数据三元组存储在列表中的最佳方法是什么?

[a, b, c]
[a, b, c]
...

我通常将 HashMap 用于一对数据键 + 值。我应该使用 HashMap + Arraylist 吗?还是 ArrayList + ArrayList ?

谢谢

最佳答案

public class Triplet<T, U, V> {

private final T first;
private final U second;
private final V third;

public Triplet(T first, U second, V third) {
this.first = first;
this.second = second;
this.third = third;
}

public T getFirst() { return first; }
public U getSecond() { return second; }
public V getThird() { return third; }
}

并实例化列表:

List<Triplet<String, Integer, Integer>> = new ArrayList<>();

关于Java:如何在列表中存储数据三元组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6010843/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com