gpt4 book ai didi

java - 比较两个列表

转载 作者:搜寻专家 更新时间:2023-11-01 01:05:43 26 4
gpt4 key购买 nike

我想比较两个列表。由于我们使用 List 编写接口(interface),它不会从 Object 类继承 equals。我该怎么做?

最佳答案

即使 List 接口(interface)不包含 equals 方法,列表类可能(并且确实)仍然实现 equals 方法.

来自API docs on AbstractList (继承自例如 ArrayListLinkedListVector):

public boolean equals(Object o)

Compares the specified object with this list for equality. Returns true if and only if the specified object is also a list, both lists have the same size, and all corresponding pairs of elements in the two lists are equal.

同样适用于toStringhashCode等方法。


正如@Pascal 在评论中提到的那样,List 接口(interface)提到了 equals 方法并在文档中声明了以下内容:

The List interface places additional stipulations, beyond those specified in the Collection interface, on the contracts of the iterator, add, remove, equals, and hashCode methods.

关于java - 比较两个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2889858/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com