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


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


p5.j​​s中的splice()函数用于在给定数组中插入值或数组元素。

用法:

sort(Array, Values, Position)

参数:此函数接受上述和以下所述的三个参数:


  • Array:这是一个要修改的给定数组。
  • Values:这是值或另一个数组,其元素将被插入到要修改的给定数组中。
  • Position:这是给定数组的元素数,之后将插入新值或另一个数组的元素。

返回值:它返回一个新的修改后的数组。

以下程序说明了p5.js中的splice()函数:

示例1:本示例使用splice()函数在给定数组中插入值或数组元素。

function setup() {  
  
    // Creating Canvas size 
    createCanvas(500, 90);  
}  
  
function draw() {  
      
    // Set the background color  
    background(220);  
      
    // Initializing the array 
    let Array = [9, 6, 0, 22, 4, 1, 15]; 
    
    // Initializing the value which are 
    // to be inserted 
    let Value = 5; 
    
    // Initializing the position after  
    // which insertion is done  
    // counting is done from starting 
    let Position = 5; 
    
    // Calling to splice() function. 
    let A = splice(Array, Value, Position); 
      
    // Set the size of text  
    textSize(16);  
      
    // Set the text color  
    fill(color('red'));  
    
    // Getting new modified array 
    text("New modified array is : " + A, 50, 30);            
} 

输出:

示例2:本示例使用splice()函数在给定数组中插入值或数组元素。

function setup() {  
  
    // Creating Canvas size 
    createCanvas(500, 90);  
}  
  
function draw() {  
      
    // Set the background color  
    background(220);  
      
    // Initializing the array 
    let Array = ['Ram', 'Geeta', 'Shita', 'Shyam']; 
    
    // Initializing the value which are 
    // to be inserted 
    let Value = 'Geeks'; 
    
    // Initializing the position after  
    // which insertion is done  
    // counting is done from starting 
    let Position = 2; 
    
    // Calling to splice() function. 
    let A = splice(Array, Value, Position); 
      
    // Set the size of text  
    textSize(16);  
      
    // Set the text color  
    fill(color('red'));  
    
    // Getting new modified array 
    text("New modified array is : " + A, 50, 30);            
} 

输出:

示例3:本示例使用splice()函数将数组元素插入另一个数组。

function setup() {  
  
    // Creating Canvas size 
    createCanvas(600, 90);  
}  
  
function draw() {  
      
    // Set the background color  
    background(220);  
      
    // Initializing the array 
    let Array = ['Ram', 'Geeta', 'Shita', 'Shyam']; 
    
    // Initializing a new array whose elements are 
    // to be inserted 
    let Value = ['Geeks', 'GeeksforGeek']; 
    
    // Initializing the position after  
    // which insertion is done  
    // counting is done from starting 
    let Position = 2; 
    
    // Calling to splice() function. 
    let A = splice(Array, Value, Position); 
      
    // Set the size of text  
    textSize(16);  
      
    // Set the text color  
    fill(color('red'));  
    
    // Getting new modified array 
    text("New modified array is : " + A, 50, 30); 
               
} 

输出:

参考: https://p5js.org/reference/#/p5/splice



相关用法


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