예제 #1
0
 /**
  * Appends the specified element to the end of this list.
  *
  * @param element element to be appended to this list.
  */
 public void add(float element) {
   // overridden for performance only.
   if (size == elements.length) {
     ensureCapacity(size + 1);
   }
   elements[size++] = element;
 }
예제 #2
0
 /**
  * Inserts the specified element before the specified position into the receiver. Shifts the
  * element currently at that position (if any) and any subsequent elements to the right.
  *
  * @param index index before which the specified element is to be inserted (must be in [0,size]).
  * @param element element to be inserted.
  * @throws IndexOutOfBoundsException index is out of range (<tt>index &lt; 0 || index &gt;
  *     size()</tt>).
  */
 public void beforeInsert(int index, float element) {
   // overridden for performance only.
   if (size == index) {
     add(element);
     return;
   }
   if (index > size || index < 0) {
     throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + size);
   }
   ensureCapacity(size + 1);
   System.arraycopy(elements, index, elements, index + 1, size - index);
   elements[index] = element;
   size++;
 }