// 获取 pos 位置的元素public int getPos(int pos) { if (pos < 0 || pos >= this.size) { System.out.println("位置非法!"); return -1; } return this.elem[pos];}