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


Processing println()用法及代碼示例


Processing, println()用法介紹。

用法

  • println()
  • println(what)
  • println(variables)

參數

  • what (byte, boolean, char, int, float, String, Object) 打印到控製台的數據
  • variables (Object[]) 數據列表,以逗號分隔

返回

  • void

說明

println() 函數寫入控製台區域,即處理環境底部的黑色矩形。此函數通常有助於查看程序正在生成的數據。每次調用此函數都會創建一個新的輸出行。通過用逗號分隔多個參數可以傳遞給函數。或者,可以使用引號 ("") 分隔單個元素並使用加法運算符 (+) 連接。



在處理 2.1 之前,println() 用於將數組數據寫入控製台。現在,使用printArray() 將數組數據寫入控製台。



請注意,控製台相對較慢。它適用於偶爾的消息,但不支持high-speed,實時輸出(例如每秒60幀)。還應該注意,for 循環中的println() 有時會鎖定程序,並導致草圖凍結。

例子

String s = "The size is ";
int w = 1920;
int h = 1080;
println(s);
println(w, "x", h);

// This program writes to the console:
// The size is 
// 1920 x 1080
print("begin- ");
float f = 0.3;
int i = 1024;
print("f is " + f + " and i is " + 1024);
String s = " -end";
println(s);

// This program writes to the console:
// "begin- f is 0.3 and i is 1024 -end"

有關的

相關用法


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