Processing, 类IntDict
用法介绍。
构造函数
IntDict()
IntDict(pairs)
说明
一个简单的类,使用 String
作为 int 值的查找。字符串"keys" 与整数值相关联。
例子
IntDict inventory;
void setup() {
size(200, 200);
inventory = new IntDict();
inventory.set("cd", 84);
inventory.set("tapes", 15);
inventory.set("records", 102);
println(inventory);
noLoop();
fill(0);
textAlign(CENTER);
}
void draw() {
int numRecords = inventory.get("records");
text(numRecords, width/2, height/2);
}
方法
- IntDict.size()返回键/值对的数量
- IntDict.clear()从数据结构中删除所有条目
- IntDict.keys()返回用于存储键的内部数组
- IntDict.keyArray()返回内部键数组的副本
- IntDict.values()返回用于存储值的内部数组
- IntDict.valueArray()创建一个新数组并将每个值复制到其中
- IntDict.get()返回指定键的值
- IntDict.set()创建一个新的键/值对或更改其中一个的值
- IntDict.hasKey()检查键是否是数据结构的一部分
- IntDict.increment()将特定键值的值增加 1
- IntDict.add()添加到值
- IntDict.sub()从值中减去
- IntDict.mult()乘以一个值
- IntDict.div()分割一个值
- IntDict.remove()删除键/值对
- IntDict.sortKeys()按字母顺序对键进行排序
- IntDict.sortKeysReverse()按字母顺序对键进行反向排序
- IntDict.sortValues()按值升序排序
- IntDict.sortValuesReverse()按值降序排序
有关的
相关用法
- Processing IntDict.add()用法及代码示例
- Processing IntDict.values()用法及代码示例
- Processing IntDict.set()用法及代码示例
- Processing IntDict.sortKeys()用法及代码示例
- Processing IntDict.sortKeysReverse()用法及代码示例
- Processing IntDict.increment()用法及代码示例
- Processing IntDict.hasKey()用法及代码示例
- Processing IntDict.size()用法及代码示例
- Processing IntDict.clear()用法及代码示例
- Processing IntDict.get()用法及代码示例
- Processing IntDict.sortValues()用法及代码示例
- Processing IntDict.remove()用法及代码示例
- Processing IntDict.mult()用法及代码示例
- Processing IntDict.keyArray()用法及代码示例
- Processing IntDict.valueArray()用法及代码示例
- Processing IntDict.sortValuesReverse()用法及代码示例
- Processing IntDict.div()用法及代码示例
- Processing IntDict.sub()用法及代码示例
- Processing IntDict.keys()用法及代码示例
- Processing IntList.get()用法及代码示例
- Processing IntList.min()用法及代码示例
- Processing IntList.hasValue()用法及代码示例
- Processing IntList用法及代码示例
- Processing IntList.shuffle()用法及代码示例
- Processing IntList.increment()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 IntDict。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。