* java/util/Vector.java (remove(Object)): Implemented.
From-SVN: r35148
This commit is contained in:
parent
983318fc16
commit
75723df4d3
2 changed files with 19 additions and 4 deletions
|
@ -413,10 +413,21 @@ public class Vector implements Cloneable, Serializable
|
|||
// {
|
||||
// }
|
||||
|
||||
// TODO12:
|
||||
// public boolean remove(Object o)
|
||||
// {
|
||||
// }
|
||||
public synchronized boolean remove(Object o)
|
||||
{
|
||||
for (int i = 0; i < elementCount; ++i)
|
||||
{
|
||||
if (o == null
|
||||
? elementData[i] == null
|
||||
: o.equals (elementData[i]))
|
||||
{
|
||||
System.arraycopy (elementData, i, elementData, i + 1,
|
||||
elementCount - i - 1);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// TODO12:
|
||||
// public Object remove(int index)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue