当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js TypedDict print()用法及代码示例


p5.j​​s中p5.TypedDict的print()方法用于将当前存在于字典中的所有键值对输出到控制台。键值对是一组相互映射的两个值。可以通过使用该对的关键字部分查询此字典来访问这些值。一个类型化的字典可以存储可以使用字典方法访问的多个键/值对。

用法:

print()

参数:此方法不接受任何参数。

以下示例说明了p5.js中的print()方法:

例:



Javascript

function setup() { 
  createCanvas(550, 300); 
  textSize(16); 
  
  let stringDict =  
      createStringDict("Tokyo", "37.26 million"); 
  text("New string dictionary created " + 
       "with one key", 20, 20); 
  
  // Getting the current size of the dictionary 
  let currSize = stringDict.size(); 
  print("Printing " + currSize + 
        " key-value pair(s):"); 
  
  // Printing all the values to console 
  stringDict.print(); 
  text("Dictionary keys printed to console", 
       20, 60); 
  
  let tmpObj = { 
    "Delhi":"25.87 million", 
    "Shanghai":"23.48 million", 
    "Mexico City":"21.34 million"
  }; 
  
  // Add the given key to the dictionary 
  // specifying the key and value as an object 
  stringDict.create(tmpObj); 
  text("New keys added to the dictionary", 
       20, 100); 
  
  // Getting the current size of the dictionary 
  currSize = stringDict.size(); 
  print("Printing " + currSize + 
        " key-value pair(s):"); 
  
  // Printing all the values to console 
  stringDict.print(); 
  text("Dictionary keys printed to console", 
       20, 140); 
}

输出:

在线编辑: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考: https://p5js.org/reference/#/p5.TypedDict/print

相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.js TypedDict print() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。