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


Processing printArray()用法及代碼示例


Processing, printArray()用法介紹。

用法

  • printArray(what)

參數

  • what (Object) 一維數組

返回

  • void

說明

printArray() 函數將數組數據寫入處理環境控製台的文本區域。在數組的每個元素之間放置一個新行。該函數隻能打印一維數組。請注意,控製台相對較慢。它適用於偶爾的消息,但不支持high-speed,實時輸出(例如每秒60幀)。

例子

float[] f = { 0.3, 0.4, 0.5 };
printArray(f);

// The above code prints:
// [0] 0.3
// [1] 0.4
// [2] 0.5

有關的

相關用法


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