首页 > 编程语言 > 详细

java中的contains()方法

时间:2015-07-01 06:21:01      阅读:216      评论:0      收藏:0      [点我收藏+]
import java.util.ArrayList;
import java.util.Collection;
/*
 * boolean contains(object o);判断集合中是否包含某个元素。
 * boolean remove(object o);删除集合集合中个某个元素
 */
//contains方法底层调用的书equals方法,所有存储在集合的中元素应该重写equals()方法。
public class ColletcionTest02 {
	public static void main(String[] args){
		Collection c = new ArrayList();
		c.add(new Integer(1));
		System.out.println(c.contains(1));
		//添加Customer
		Customer cus1 = new Customer("zhangsan",14);
		Customer cus2 = new Customer("zhangsan",14);
		c.add(cus1);
		System.out.println(c.contains(cus2));
	}
}

public class Customer {
	private String name;
	private int age;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public Customer(String name, int age) {
		super();
		this.name = name;
		this.age = age;
	}
	public Customer(){
		
	}
	public String toString(){
		return "name=" + name +" "+"age="+ age;
	}
	//重写了equal方法
	public boolean equals(Object o){
		if(this==o){
			return true;
		}else{
			if(o instanceof Customer){
				Customer co = (Customer)o;
				if(co.name.equals(this.name)&&co.age==this.age){
					return true;
				}
			}
		}		
		return false;
	}
}


本文出自 “gaogaozi” 博客,请务必保留此出处http://hangtiangazi.blog.51cto.com/8584103/1669551

java中的contains()方法

原文:http://hangtiangazi.blog.51cto.com/8584103/1669551

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!