當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


p5.j​​s中的print()函數將內容寫入Web瀏覽器的控製台區域。這有助於查看程序生成的數據,從而有助於調試代碼。元素可以使用引號(“”)分隔,並與加法運算符(+)結合在一起。使用print('\ n')顯示空白行。

用法:

print(c)

參數:該函數接受單個參數c,該參數存儲要打印的Number,String,Object,Boolean,Array的任意組合。


以下示例程序旨在說明p5.js中的print()函數:

示例1:本示例使用print()函數在控製台上顯示內容。

function setup() { 
  
    // Create canvas of given size 
    createCanvas(400, 400); 
      
    // print function call 
    print("Hello GeeksForGeeks"); 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
}

輸出:

示例2:本示例使用print()函數在控製台上顯示內容。

function setup() { 
  
    // Create canvas of given size 
    createCanvas(400, 400); 
      
    // print function call 
    for(let i = 0; i < 4; i++) { 
        for(let j = 0; j < i; j++) { 
            print("*"); 
        } 
        print("\n"); 
    } 
} 
  
function draw() { 
      
    // Set the background color 
    background(220); 
}

輸出:

參考: https://p5js.org/reference/#/p5/print



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | print() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。