Processing, 类IntDict
中的remove()
用法介绍。
用法
.remove(key)
返回
int
说明
删除键/值对。
例子
IntDict inventory;
void setup() {
size(200, 200);
inventory = new IntDict();
inventory.set("cd", 84);
inventory.set("tapes", 15);
inventory.set("records", 102);
println(inventory); // Full inventory
inventory.remove("tapes");
println(inventory); // Tapes are removed from list
}
相关用法
- 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.mult()用法及代码示例
- Processing IntDict.keyArray()用法及代码示例
- Processing IntDict.valueArray()用法及代码示例
- Processing IntDict.sortValuesReverse()用法及代码示例
- Processing IntDict.div()用法及代码示例
- Processing IntDict.sub()用法及代码示例
- Processing IntDict.keys()用法及代码示例
- Processing IntDict用法及代码示例
- Processing IntList.get()用法及代码示例
- Processing IntList.min()用法及代码示例
- Processing IntList.hasValue()用法及代码示例
- Processing IntList用法及代码示例
- Processing IntList.shuffle()用法及代码示例
- Processing IntList.increment()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 IntDict.remove()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。