Java中list.contains()的用法及拓展

一、用法:

list集合中contains() 用於判斷集合中 是否 包含指定的元素。list會將括號內的元素和list中存在的元素進行逐個比對,若有相等的,返回結果為true,若沒有則返回結果為false。

二、舉例說明:

用下方代碼驗證:

  public static void main(String[] args) {
        List newList = new ArrayList();//創建一個空數組
        newList.add("name");
        newList.add("age");
        newList.add("sex");
        newList.add("birth");//往數組中加一些元素
        boolean res = false;
        if(newList.contains("birthday")){
            res=true;
            log.info("包含,返回"+res);
        }else {
            log.info("不包含,返回"+res);
        }
    }

測試newList數組中是否包含元素“birthday”

測試newList數組中是否包含元素“birth”

三、拓展

String類中的contains()方法:當且僅當此字符串包含指定的 char 值序列,即判斷指定內容中是否包含括號中的內容
舉例說明:

public static void main(String[] args) {
	String str="CSDN程序媛";
    boolean res = false;
    if(str.contains("程序媛")){
    	res=true;
        log.info("包含程序媛,返回"+res);
    }else {
        log.info("不包含程序媛,返回"+res);
    }

測試String類型“CSDN程序媛”是否包含“程序媛”

如果String類型的字符串中包含字母時,需要註意區分大小寫

測試String類型“CSDN程序媛”是否包含小寫“csdn”

補充:Java中List.contains()方法比較的是地址而不是值

使用List.contains(Object object)方法判斷ArrayList是否包含一個元素對象(針對於對象的屬性值相同,但對象地址不同的情況),如果沒有重寫List<E>的元素對象Object中的equals方法,默認如下:

使用List.contains(Object object)方法判斷ArrayList是否包含一個元素對象(針對於對象的屬性值相同,但對象地址不同的情況),如果沒有重寫List<E>的元素對象Object中的equals方法,默認如下:

@Override
    public boolean equals(Object o) {
        // TODO Auto-generated method stub
        return super.equals(o);
    }

將導致contains方法始終返回false。

查看ArrayList的contains方法的源碼如下:

/**
     * Searches this {@code ArrayList} for the specified object.
     *
     * @param object
     *            the object to search for.
     * @return {@code true} if {@code object} is an element of this
     *         {@code ArrayList}, {@code false} otherwise
     */
    @Override public boolean contains(Object object) {
        Object[] a = array;
        int s = size;
        if (object != null) {
            for (int i = 0; i < s; i++) {
                if (object.equals(a[i])) {
                    return true;
                }
            }
        } else {
            for (int i = 0; i < s; i++) {
                if (a[i] == null) {
                    return true;
                }
            }
        }
        return false;
    }

可以看出,contains方法依據Object的equals方法來判斷是否包含某一元素,繼續查看Object類中的equals方法,源碼如下:

public boolean equals(Object o) {
        return this == o;
    }

所以,使用“==”比較對象的地址,如果是同一對象即地址相同的情況下,才會返回true,而對於對象屬性值相同但地址不同的不同對象,始終返回false!

如果需要依據對象屬性值是否相同來判斷ArrayList是否包含某一對象,則需要重寫Object的equals方法,並在equals方法中一一比較對象的每個屬性值,如:

package com.feng.lejuan.entity;
 
public class QuestionInfo {
 
    private String questionId;
    
    private String answerId;
    
    private String subQuestionId;
    
    private String result;
 
    public QuestionInfo() {
        super();
        
    }
 
    public QuestionInfo(String questionId, String answerId,
            String subQuestionId, String result) {
        super();
        this.questionId = questionId;
        this.answerId = answerId;
        this.subQuestionId = subQuestionId;
        this.result = result;
    }
 
    public String getQuestionId() {
        return questionId;
    }
 
    public void setQuestionId(String questionId) {
        this.questionId = questionId;
    }
 
    public String getAnswerId() {
        return answerId;
    }
 
    public void setAnswerId(String answerId) {
        this.answerId = answerId;
    }
 
    public String getSubQuestionId() {
        return subQuestionId;
    }
 
    public void setSubQuestionId(String subQuestionId) {
        this.subQuestionId = subQuestionId;
    }
 
    public String getResult() {
        return result;
    }
 
    public void setResult(String result) {
        this.result = result;
    }
 
    @Override
    public boolean equals(Object o) {
        if (o instanceof QuestionInfo) {
            QuestionInfo question = (QuestionInfo) o;
            return this.questionId.equals(question.questionId)
                    && this.subQuestionId.equals(question.subQuestionId)
                    && this.answerId.equals(question.answerId)
                    && this.result.equals(question.result);
        }
        return super.equals(o);
    }
    
    @Override
    public String toString() {
        return "QuestionInfo [questionId=" + questionId + ", answerId="
                + answerId + ", subQuestionId=" + subQuestionId + ", result="
                + result + "]";
    }
    
}

總結

到此這篇關於Java中list.contains()用法及拓展的文章就介紹到這瞭,更多相關Java list.contains()用法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: