Processing, 类IntList
用法介绍。
构造函数
IntList()
IntList(items)
说明
整数列表的助手类。列表旨在具有 ArrayLists
的一些函数,但要保持使用数组的简单性和效率。 sort()
和 shuffle()
等函数始终作用于列表本身。要获得排序副本,请使用 list.copy().sort()
。
例子
IntList inventory;
void setup() {
size(200, 200);
inventory = new IntList();
inventory.append(84);
inventory.append(15);
inventory.append(102);
println(inventory);
noLoop();
fill(0);
textAlign(CENTER);
}
void draw() {
int nums = inventory.get(2);
text(nums, width/2, height/2);
}
方法
- IntList.size()获取列表的长度
- IntList.clear()从列表中删除所有条目
- IntList.get()获取特定索引处的条目
- IntList.set()在特定索引处设置条目
- IntList.remove()从指定索引中删除一个元素
append()
向列表中添加新条目- IntList.hasValue()检查一个数字是否是列表的一部分
- IntList.increment()将值加一
- IntList.add()添加到值
- IntList.sub()从值中减去
- IntList.mult()乘以一个值
- IntList.div()分割一个值
- IntList.min()返回最小值
- IntList.max()返回最大值
sort()
对数组进行排序,从最低到最高- IntList.sortReverse()反向排序,将值从高到低排序
reverse()
反转列表元素的顺序- IntList.shuffle()随机化列表元素的顺序
- IntList.array()使用所有值的副本创建一个新数组
有关的
相关用法
- Processing IntList.get()用法及代码示例
- Processing IntList.min()用法及代码示例
- Processing IntList.hasValue()用法及代码示例
- Processing IntList.shuffle()用法及代码示例
- Processing IntList.increment()用法及代码示例
- Processing IntList.div()用法及代码示例
- Processing IntList.size()用法及代码示例
- Processing IntList.max()用法及代码示例
- Processing IntList.mult()用法及代码示例
- Processing IntList.clear()用法及代码示例
- Processing IntList.remove()用法及代码示例
- Processing IntList.set()用法及代码示例
- Processing IntList.array()用法及代码示例
- Processing IntList.sub()用法及代码示例
- Processing IntList.add()用法及代码示例
- Processing IntList.sortReverse()用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。