// 判定是否包含某个元素public boolean contains(int toFind) { for (int j : this.elem) { if (j == toFind) { return true; } } return false;//循环走完,表示没找到}