如何使用大型参数列表设置方法的格式
2022-09-01 23:03:59
我从来没有见过一种方法可以很好地做到这一点,我有兴趣看看别人是如何做到的。目前我把它格式化成这样:
public Booking createVehicleBooking(Long officeId,
Long start,
Long end,
String origin,
String destination,
String purpose,
String requirements,
Integer numberOfPassengers) throws ServiceException {
/*..Code..*/
}