我想知道如何能够contains
直接在我的类而不是它的 ArrayList 变量上调用该方法。最好的解释方法是使用下面的代码。
谢谢你的帮助。
public class Chord {
ArrayList<Note> notes;
// some more stuff not here
}
cmaj = new Chord("Cmaj");
cnote = new Note("C");
// what I have
cmaj.getNotes().contains(cnote);
// what I would like, is this possible, how?
cmaj.contains(cnote);