我想知道最好的类似 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<>();