Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ポイントのリストがあり、contain メソッドを使用したいと考えています。問題は、私が次の List: を持っていることです{(1,2), (2,3), (2,4)}が、私が尋ねたときlist.contain((2,3))、それは私に false を返します。
{(1,2), (2,3), (2,4)}
list.contain((2,3))
私は使用しますjava.awt.Point。
java.awt.Point
この問題をサポートするように変更するにはどうすればよいですか?
これを試して:
list.contains(new Point(2,3))