Java容器类里面的remove()方法的用法
看马士兵老师的Java基础教程,里面的有这么一段程序,packageit.java.Collection;importjava.util.*;publicclassTes...
看马士兵老师的Java基础教程,里面的有这么一段程序,
package it.java.Collection;
import java.util.*;
public class TestCollection {
public static void main(String[] args) {
Collection<Object> c = new ArrayList<Object>();
c.add("hello world!");
c.add(new Integer(100));
c.add(new Name("f1", "f2"));
System.out.println(c);
System.out.println(c.remove(new Name("f1", "f2")));
System.out.println(c);
}
}
class Name {
String firstName;
String secondName;
Name(String firstName, String secondName) {
this.firstName = firstName;
this.secondName = secondName;
}
public String getFirstName() {
return firstName;
}
public String getSecondName() {
return secondName;
}
public String toString() {
return firstName + " " + secondName;
}
public boolean equals(Object obj){
if(obj instanceof Name){
Name name=(Name)obj;
return (firstName.equals(name.firstName)&&secondName.equals(name.secondName));
}
else{
return super.equals(obj);
}
}
}
如果我不在Name类里面重写equals()方法的话,我的System.out.println(c.remove(new Name("f1", "f2")));这句话打印的永远都是false;但是为什么重写了之后就变成了true了呢?难道说remove()方法移除容器里面的对象时,要先判断要删除的对象和容器里面的对象相等才能删除吗?这是一个怎么样的过程呢?求大神解答,新手不懂好纠结. 展开
package it.java.Collection;
import java.util.*;
public class TestCollection {
public static void main(String[] args) {
Collection<Object> c = new ArrayList<Object>();
c.add("hello world!");
c.add(new Integer(100));
c.add(new Name("f1", "f2"));
System.out.println(c);
System.out.println(c.remove(new Name("f1", "f2")));
System.out.println(c);
}
}
class Name {
String firstName;
String secondName;
Name(String firstName, String secondName) {
this.firstName = firstName;
this.secondName = secondName;
}
public String getFirstName() {
return firstName;
}
public String getSecondName() {
return secondName;
}
public String toString() {
return firstName + " " + secondName;
}
public boolean equals(Object obj){
if(obj instanceof Name){
Name name=(Name)obj;
return (firstName.equals(name.firstName)&&secondName.equals(name.secondName));
}
else{
return super.equals(obj);
}
}
}
如果我不在Name类里面重写equals()方法的话,我的System.out.println(c.remove(new Name("f1", "f2")));这句话打印的永远都是false;但是为什么重写了之后就变成了true了呢?难道说remove()方法移除容器里面的对象时,要先判断要删除的对象和容器里面的对象相等才能删除吗?这是一个怎么样的过程呢?求大神解答,新手不懂好纠结. 展开
1个回答
展开全部
其实你可以想下,你要从一个容器中移除一个东西,你说你是不是要想判断下这个容器中是不是由这个东西,有才能移除,没有移除肯定失败啊
这是remove方法的源码:
public boolean remove(Object o) {
if (o == null) {
for (int index = 0; index < size; index++)
if (elementData[index] == null) {
fastRemove(index);
return true;
}
} else {
for (int index = 0; index < size; index++)
if (o.equals(elementData[index])) { //看这
fastRemove(index);
return true;
}
}
return false;
}
这是remove方法的源码:
public boolean remove(Object o) {
if (o == null) {
for (int index = 0; index < size; index++)
if (elementData[index] == null) {
fastRemove(index);
return true;
}
} else {
for (int index = 0; index < size; index++)
if (o.equals(elementData[index])) { //看这
fastRemove(index);
return true;
}
}
return false;
}
追问
哦,看了源码我就懂了,你的这些源码哪里看到的啊?
追答
你没用IDE工具做开发?例如使用eclipse,myeclipse,可以学着用用,可以查看源代码
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询