gpt4 book ai didi

java - > 的最佳容器

转载 作者:行者123 更新时间:2023-11-30 05:50:31 27 4
gpt4 key购买 nike

我想知道最好的类 java 容器是什么

<Key, <pairOfType1,pairOfType2>>

我有一个作为键的 object1 以及一个 t1 和 t2。

我的类具有以下属性:

public class Patient implements Externalizable {
protected int iD;
protected String name;
protected String CNP;
protected int age;


public class Treatment implements Externalizable {
protected int iD;
protected String description;

public class Diagnosis implements Externalizable {
protected int iD;
protected String name;
protected String description;
protected String date;

PS:我对“真正的程序”很好奇,因为我的要求是浪费。我考虑过的想法 private Map<Patient, <Diagnosis, Treatmet>> map = new Map<>();

最佳答案

Map<Patient, Pair<Diagnosis, Treatment>>怎么样? ?

配对类可能如下所示:

public class Pair<T, U> {

private final T t;
private final U u;

public Pair(T t, U u) {
this.t = t;
this.u = u;
}
//getters
}

关于java - <Key, <pair Of Type1,pair Of Type2>> 的最佳容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13992816/

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