Groovy - sort()



返回原始列表的排序副本。

语法

List sort()

参数

返回值

排序的列表。

范例

以下是该方法使用范例 −

class Example { 
   static void main(String[] args) { 
      def lst = [13, 12, 15, 14]; 
      def newlst = lst.sort(); 
      println(newlst);
   }
}

当我们运行上述程序时,我们将得到以下结果 −

[12, 13, 14, 15]
groovy_lists.htm
广告