摘要: public class AltList<X, Y> { private X item; private AltList<Y, X> next; AltList(X item, AltList<Y, X> next) { this.item = item; this.next = next; } p 阅读全文
posted @ 2023-05-19 15:09 哎呦_不想学习哟~ 阅读(17) 评论(0) 推荐(0)