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


Processing print()用法及代碼示例


Processing, print()用法介紹。

用法

  • print(what)
  • print(variables)

參數

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

返回

  • void

說明

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



在對象上使用 print() 將輸出 null ,一個可能看起來像 "@10be08," 的內存位置或正在打印的對象的 toString() 方法的結果。在自己的類上調用print() 時想要更多有用輸出的高級用戶可以將toString() 方法添加到返回字符串的類中。



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

例子

String s = "The size is ";
int w = 1920;
int h = 1080;
print(s);
print(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大神的英文原創作品 print()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。