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