该测试验证了飞机分类方法的正确性。请告诉我,为什么comparison()和reverseOrder()为什么写“无法解析方法”?我怎样才能解决这个问题?
@Test
public void testPlanesSortedByMaxLoadCapacity() {
Airport airport = new Airport(planes);
airport.sortByMaxLoadCapacity();
List<? extends Plane> sortedPlanes = airport.getPlanes();
planes.sort(comparing(Plane::getMaxLoadCapacity, reverseOrder()));
Assert.assertEquals(planes, sortedPlanes);
}
我真的需要你的帮助