private int _size


public boolean doesContain (Element anElement)

{ // 주어진 원소가 Bag 에 있는지 알려준다

boolean found = false ;

for ( int i = 0 ; i < this._size && ! found ; i++ ) {

if ( this._elements[i]. equals (anElement) ) {

found = true ;

}

}

return found ;

}


하나의 메소드인데

this._size&&!found 이게 뭔개소리지?


이메소드 알아듣기좀 쉽게 설명해줄수 없음?