的位置層次,我有以下位置的層次結構:建設計數
public class Location {
public Location parentLocation;
public String name;
public int id;
}
List<Location> listOfCities; // This list strictly contains all "city" level locations like Chicago, Atlanta etc.
假設一秒鐘的parentLocation只能是國家和一個國家的parentLocation爲空。即。如果我有一個芝加哥的位置,芝加哥位置對象的parentLocation將是USA,並且鏈將終止在那裏,因爲位置USA有parentLocation = null。我有市級位置對象的列表,我想獲得以下罪狀:
USA (20)
- Chicago (12)
- New York (1)
- Oregon (5)
- Atlanta (2)
Mexico (1)
- Puebla (1)
是否有Java8一個方便的方式來獲得jsonable對象將是我上面描述對於一個給定的計數層次城市地點列表?我嘗試:
// Get counts of all cities in listOfCities (ie. Chicago -> 12)
Map<String, Integer> cityCounts = listOfCities.stream()
.map(Location::name)
.collect(Collectors.toMap(city -> city, city -> 1, Integer::sum));
我不確定究竟如何通過parentLocation雖然獲得了「捲起」計數和讓所有物體可以在方式走到如上漂亮的印刷單幹淨的響應對象。
確實芝加哥有12個,因爲有其他12個城市,芝加哥是家長嗎? 「listOfCities」是所有地點,父母和非父母的「列表」嗎? –
4castle
@ 4castle芝加哥有12個,因爲有12個城市的String name =「Chicago」。 listOfCities是所有非父母(即,城市級別位置對象)的列表。城市之外沒有位置級別,城市的父級位置=國家/地區。 –
謝謝,這清除了事情。 'USA'會被包含在輸出'Map'中的關鍵字嗎? – 4castle