鬼手零基礎(chǔ)入門windows軟件逆向分析
/**
* Appends the specified element to the end of this Vector.
*
* @param e element to be appended to this Vector
* @return {@code true} (as specified by {@link Collection#add})
* @since 1.2
*/public synchronized boolean add(E e) {
? ?modCount++;
? ?ensureCapacityHelper(elementCount + 1);
? ?elementData[elementCount++] = e;
? ?return true;}
標(biāo)簽: