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


p5.js NumberDict minValue()用法及代码示例


p5.j​​s中p5.NumberDict的minValue()方法用于查找数字字典中的最小值。数字字典可以存储多个键值对。

用法:

minValue()

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

返回值:它返回一个Number值,它是字典中的最小值。

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



例:

Javascript

function setup() { 
  createCanvas(550, 300); 
  textSize(16); 
  
  text("Click on the button to create a " + 
       "new dictionary and get the lowest value", 
       20, 20); 
  
  setBtn =  
    createButton("Create random dictionary"); 
  setBtn.position(30, 40); 
  setBtn.mouseClicked(createNewDict); 
  
  getBtn = createButton("Get Lowest Value"); 
  getBtn.position(300, 40); 
  getBtn.mouseClicked(getLowestValue); 
} 
  
function createNewDict() { 
  clear(); 
  
  // Create an object with random values 
  let obj = {}; 
  for (let i = 0; i < 5; i++) { 
    let rk = ceil(Math.random() * 100); 
    let rn = floor(Math.random() * 100); 
    rn = (rk > 50) ? rn:-rn; 
  
    obj[rk] = rn; 
  
    text("Key:" + rk + ":Value:" +  
         rn, 40, 120 + 20 * i); 
  } 
  
  // Create a dictionary using the 
  // above values 
  numDict = createNumberDict(obj); 
  
  text("New Dictionary created with values", 
       20, 80); 
  
  text("Click on the button to create a " + 
       "new dictionary and get the lowest value", 
       20, 20); 
} 
  
function getLowestValue() { 
  
  // Get the lowest value in the dictionary 
  let lowestVal = numDict.minValue(); 
  
  // Display the lowest value 
  text("The lowest value in the dictionary is:" + 
       lowestVal, 20, 240); 
  
  text("Click on the button to create a " + 
       "new dictionary and get the lowest value", 
       20, 20); 
}

输出:

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

相关用法


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