我有一個我從數據庫中獲得的學生列表。我想,以結構清單,根據學生的年齡,並在年底,能有這樣的名單:收藏夾 - 添加元素到集合
[
30 => [
"id1" => "Name1",
"id2" => "Name2",
],
31 => [
"id5" => "Name3",
"id6" => "Name4",
]
]
在我的代碼
,我收到的學生這樣的名單:
List<ApplicantModel> applicants = applicantDao.getApplicantsByApplicationStatus(applicantTypeId);
,我想在這裏待內部創建的集合「爲」:
for(int i=0;i<=applicants.size()-1;i++){
//code here to create the collection with the above structure
}
,或者如果你有其他更好的建議? 謝謝!
你的問題是不明確的,你要根據學生的年齡排序您ApplicantModel'的'名單?請提供'ApplicantModel'對象的內容 – VPK
'=>'表示您想要的結果是什麼? –