在此程序中,您將學習按照Kotlin中給定屬性對自定義對象的數(shù)組列表進行排序。
import java.util.* fun main(args: Array<String>) { val list = ArrayList<CustomObject>() list.add(CustomObject("Z")) list.add(CustomObject("A")) list.add(CustomObject("B")) list.add(CustomObject("X")) list.add(CustomObject("Aa")) var sortedList = list.sortedWith(compareBy({ it.customProperty })) for (obj in sortedList) { println(obj.customProperty) } } public class CustomObject(val customProperty: String) { }
運行該程序時,輸出為:
A Aa B X Z
在上面的程序中,我們定義了一個帶有字符串屬性customProperty的CustomObject類。
在main()方法中,我們創(chuàng)建了一個自定義對象的數(shù)組列表 list,并使用5個對象進行了初始化。
為了使用屬性對列表進行排序,我們使用list的sortedWith()方法。sortedWith()方法采用一個比較器compareBy,該比較器比較customProperty每個對象并將其排序。
然后將排序后的列表存儲在變量 sortedList 中。
以下是等效的Java代碼:按屬性對自定義對象的ArrayList進行排序的Java程序。