我正在尝试创建一个包含String,String,double的三重结构的链表,但我找不到任何东西。谁能给我任何消化?
此致 安德烈
答案 0 :(得分:1)
您可以尝试这样的事情:
class TripleLinkedList<A,B,C> {
private A paramOne;
private B paramTwo;
private C paramThree;
private TripleLinkedList<A,B,C> next;
public TripleLinkedList(A a, B b, C c) {
this.paramOne = a;
this.paramTwo = b;
this.paramThree = c;
}
public A getA() {
return this.paramOne;
}
// Rest of the methods
}
实施您需要的方法,可能包括getB()
,getC()
,add(A a, B b, C c)
和get(A a)