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);
我尝试在格式设置中查找相应的选项,但找不到,请有人帮我设置一下。
答案 0 :(得分:2)
据我所知,不要使用Ctrl+Shift+F
来格式化代码,如果你想在一行中创建每个参数,请检查以下步骤,
只需在单行和用户快捷键
中选择要显示的行Ctrl+Alt+J
希望它可以帮到你
答案 1 :(得分:1)
您的问题的答案是修改自动格式化的最大行长度。此信息已在此处介绍:
Maximum Line Length of Auto Formatting of Eclipse
制作个人资料并增加换行后,您可以按Ctrl + Shft + F添加内容。