p5.js中p5.TypedDict的clear()方法用于删除类型字典中的所有键值对。键值对是一组相互映射的两个值。可以通过使用该对的关键字部分查询此字典来访问这些值。一个类型化的字典可以存储可以使用字典方法访问的多个键-值对。
用法:
clear()
参数:此方法不接受任何参数。
以下示例说明了p5.js中的clear()方法:
例:
Javascript
function setup() {
createCanvas(550, 500);
textSize(16);
let tmpObj = {
"Statue of Unity":"182 m",
"Spring Temple Buddha":"128 m",
"Ushiku Daibutsu":"100 m",
"Great Buddha of Thailand":"92m"
};
// Create a new dictionary
let stringDict =
createStringDict(tmpObj);
text("New string dictionary created " +
"with four keys", 20, 40);
// Check for a key
let existOne =
stringDict.hasKey('Spring Temple Buddha');
text("Dictionary has key " +
"'Spring Temple Buddha':" +
existOne, 20, 80);
// Check the current size
let currSize = stringDict.size();
text("Current size of the dictionary:" +
currSize, 20, 100);
// Clear the dictionary
stringDict.clear();
text("Dictionary has been cleared!",
20, 140);
// Check for a key again
existOne =
stringDict.hasKey('Spring Temple Buddha');
text("Dictionary has key " +
"'Spring Temple Buddha':" +
existOne, 20, 180);
// Check the current size again
currSize = stringDict.size();
text("Current size of the dictionary:" +
currSize, 20, 200);
}
输出:
在线编辑: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考: https://p5js.org/reference/#/p5.TypedDict/clear
相关用法
- p5.js TypedDict set()用法及代码示例
- p5.js TypedDict get()用法及代码示例
- p5.js TypedDict create()用法及代码示例
- p5.js TypedDict hasKey()用法及代码示例
- p5.js TypedDict size()用法及代码示例
- p5.js TypedDict print()用法及代码示例
- p5.js TypedDict remove()用法及代码示例
- HTML DOM console.clear()用法及代码示例
- Node.js console.clear()用法及代码示例
- ASP Clear用法及代码示例
- Javascript Map.clear( )用法及代码示例
- PHP Imagick clear()用法及代码示例
- PHP Ds\Collection clear()用法及代码示例
- CSS clear属性用法及代码示例
- PHP Ds\Vector clear()用法及代码示例
- PHP Gmagick clear()用法及代码示例
- PHP Ds\Set clear()用法及代码示例
- PHP Ds\Deque clear()用法及代码示例
- HTML Style clear用法及代码示例
- p5.js clear()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.js TypedDict clear() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。