摘要: Array.java 1 public class Array<E> { 2 3 private E[] data; 4 private int size; 5 6 // 构造函数,传入数组的容量capacity构造Array 7 public Array(int capacity){ 8 data 阅读全文
posted @ 2019-08-05 22:19 hellozwx 阅读(145) 评论(0) 推荐(0) 编辑