我有一个这样构建的arraylist:
在课堂上: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”?
我怎样才能有效地做到这一点?