我有一個數組,我們可以稱它爲_persons。 我正在使用Value Objects填充此數組,我們稱該對象PersonVOas3檢查數組中具有相同屬性的2個對象
每個PersonVO都有一個名稱和一個score屬性。
我所試圖做的是搜索陣列&
//PSEUDO CODE
1 Find any VO's with same name (there should only be at most 2)
2 Do a comparison of the score propertys
3 Keep ONLY the VO with the higher score, and delete remove the other from the _persons array.
我在用代碼實現的麻煩。任何AS3嚮導能夠提供幫助?