Processing, 类IntList
中的sortReverse()
用法介绍。
用法
.sortReverse()
返回
void
说明
一种相反的排序。它相当于运行 sort()
然后 reverse()
,但比单独运行每个更有效。
例子
IntList inventory;
void setup() {
size(200, 200);
inventory = new IntList();
inventory.append(84);
inventory.append(15);
inventory.append(102);
println(inventory);
inventory.sortReverse(); // Orders to 102, 84, 15
println(inventory);
}
相关用法
- Processing IntList.shuffle()用法及代码示例
- Processing IntList.size()用法及代码示例
- Processing IntList.set()用法及代码示例
- Processing IntList.sub()用法及代码示例
- Processing IntList.get()用法及代码示例
- Processing IntList.min()用法及代码示例
- Processing IntList.hasValue()用法及代码示例
- Processing IntList.increment()用法及代码示例
- Processing IntList.div()用法及代码示例
- Processing IntList.max()用法及代码示例
- Processing IntList.mult()用法及代码示例
- Processing IntList.clear()用法及代码示例
- Processing IntList.remove()用法及代码示例
- Processing IntList.array()用法及代码示例
- Processing IntList.add()用法及代码示例
- Processing IntList用法及代码示例
- Processing IntDict.add()用法及代码示例
- Processing IntDict.values()用法及代码示例
- Processing IntDict用法及代码示例
- Processing IntDict.set()用法及代码示例
- Processing IntDict.sortKeys()用法及代码示例
- Processing IntDict.sortKeysReverse()用法及代码示例
- Processing IntDict.increment()用法及代码示例
- Processing IntDict.hasKey()用法及代码示例
- Processing IntDict.size()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 IntList.sortReverse()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。