Processing, str()
用法介绍。
说明
将原始数据类型(boolean
、byte
、char
、int
或 float
)的值转换为其 String
表示。例如,使用 str(3)
转换整数将返回 "3"
的 String
值,使用 str(-12.6)
转换浮点数将返回 "-12.6"
,使用 str(true)
转换布尔值将返回 "true"
。
当传入一个值数组时,将返回一个相同长度的String
数组。
例子
boolean b = false;
byte y = -28;
char c = 'R';
float f = -32.6;
int i = 1024;
String sb = str(b);
String sy = str(y);
String sc = str(c);
String sf = str(f);
String si = str(i);
sb = sb + sy + sc + sf + si;
println(sb); // Prints 'false-28R-32.61024'
相关用法
- Processing strokeJoin()用法及代码示例
- Processing strokeWeight()用法及代码示例
- Processing stroke()用法及代码示例
- Processing strokeCap()用法及代码示例
- Processing static用法及代码示例
- Processing scale()用法及代码示例
- Processing splice()用法及代码示例
- Processing super用法及代码示例
- Processing subset()用法及代码示例
- Processing saveJSONArray()用法及代码示例
- Processing saveXML()用法及代码示例
- Processing switch用法及代码示例
- Processing sqrt()用法及代码示例
- Processing serverEvent()用法及代码示例
- Processing save()用法及代码示例
- Processing saveStrings()用法及代码示例
- Processing saveTable()用法及代码示例
- Processing shorten()用法及代码示例
- Processing saturation()用法及代码示例
- Processing settings()用法及代码示例
- Processing spotLight()用法及代码示例
- Processing setLocation()用法及代码示例
- Processing splitTokens()用法及代码示例
- Processing setResizable()用法及代码示例
- Processing specular()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 str()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。