作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道最好的类 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/
我是一名优秀的程序员,十分优秀!