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


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。