作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个像这样构建的数组列表:
在类中:Strings.java
ArrayList<MyQueue> strings = new ArrayList<MyQueue>();
strings.add (new MyQueue("paper", "clips", "eraser"));
strings.add (new MyQueue("paperplane", "numbers", "pineapple"));
在类中:MyQueue.java
--Constructor with 3 string parameters--
--Getters/setters for three strings--
现在在 Strings.java 类中,我想搜索 ArrayList“strings”以查看它是否包含字符串“paper”?
我怎样才能有效地做到这一点?
最佳答案
您应该尝试重写equals
方法来使用第一个属性来比较对象。然后调用contains
方法来检查具有“paper”属性的对象。 contains
方法在内部使用 equals
,因此这就是您需要重写 equals 的原因。
关于java - 如何在自定义的数组列表中进行搜索?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18805139/
我是一名优秀的程序员,十分优秀!