我有我填寫如下cordinates x和y數組包含列表
List<Float[]> list = new ArrayList<>();
list.add(new Float[]{x,y});
我想要做一個測試在這個列表中包含x和y需要有一個準確的數字只是一個列表這樣
private boolean containlist(float x, float y) {
return (x <730 && x > 710 && y <1114 && y >140);
}
可能的複製[什麼是過濾Java集合的最好方法是什麼? (http://stackoverflow.com/questions/122105/what-is-the-best-way-to-filter-a-java-collection) – gus27