Eclipse以这种方式格式化我的代码,这意味着它将参数放在不同的行中:

nearByLocationsArray = getAddress(      currentLocation.getLatitude(),
                        currentLocation.getLongitude(), 10).toArray(
                        new String[nearbyLocations.size()]);
nearbyLocations = gCoder.getFromLocation(latitude, longitude,
                                maxResults);


但是,我真的不喜欢这样,我希望将其简化为一行:

nearByLocationsArray = getAddress(currentLocation.getLatitude(),currentLocation.getLongitude(), 10).toArray(new String[nearbyLocations.size()]);
nearbyLocations = gCoder.getFromLocation(latitude, longitude,maxResults);


我尝试在格式设置中寻找合适的选项,但找不到,有人可以帮助我进行设置。

最佳答案

您的问题的答案是修改自动格式化的最大行长。此信息已在此处介绍:

Maximum Line Length of Auto Formatting of Eclipse

制作个人资料并增加换行符后,可以按Ctrl + Shft + F键显示您的心脏内容。

08-28 18:32