Método p5.js TypedDict clear()

El método clear() de p5.TypedDict en p5.js se usa para eliminar todos los pares clave-valor en el diccionario escrito. Un par clave-valor es un conjunto de dos valores que se asignan entre sí. Se puede acceder a estos valores consultando este diccionario utilizando la parte clave del par. Un diccionario escrito puede almacenar varios pares clave-valor a los que se puede acceder mediante los métodos del diccionario.

Sintaxis: 

clear()

Parámetros:  este método no acepta ningún parámetro.

El siguiente ejemplo ilustra el método clear() en p5.js:

Ejemplo:

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);
}

Producción:

Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/ referencia/#/p5.TypedDict/clear

Publicación traducida automáticamente

Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *