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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。