Processing, sort()
用法介绍。
说明
将一组数字从小到大排序,或按字母顺序排列一组单词。原始数组没有被修改;返回一个重新排序的数组。 count
参数说明要排序的元素数。例如,如果数组中有 12 个元素,并且 count
设置为 5,则仅对数组中的前 5 个元素进行排序。复制
float[] a = { 3.4, 3.6, 2, 0, 7.1 };
a = sort(a);
println(a);
// Prints the contents of the sorted array:
// [0] 0.0
// [1] 2.0
// [2] 3.4
// [3] 3.6
// [4] 7.1
String[] s = { "deer", "elephant", "bear", "aardvark", "cat" }; s = sort(s); println(s); // Prints the contents of the sorted array: // [0] "aardvark" // [1] "bear" // [2] "cat" // [3] "deer" // [4] "elephant"
String[] s = { "deer", "elephant", "bear", "aardvark", "cat" }; s = sort(s, 3); println(s); // Prints the contents of the array, with the first 3 elements sorted: // [0] "bear" // [1] "deer" // [2] "elephant" // [3] "aardvark" // [4] "cat"
相关用法
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing super用法及代码示例
- Processing subset()用法及代码示例
- Processing saveJSONArray()用法及代码示例
- Processing strokeJoin()用法及代码示例
- Processing saveXML()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveTable()用法及代码示例
- Processing shorten()用法及代码示例
- Processing saturation()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
- Processing specular()用法及代码示例
- Processing sphere()用法及代码示例
- Processing setup()用法及代码示例
- Processing shape()用法及代码示例
- Processing smooth()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 sort()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。