Processing, nf()
用法介绍。
用法
nf(num)
nf(nums)
nf(nums, digits)
nf(num, digits)
nf(nums, left, right)
nf(num, left, right)
参数
nums
(int[], float[])
要格式化的数字digits
(int)
用零填充的位数num
(int, float)
要格式化的数字left
(int)
小数点左边的位数right
(int)
小数点右边的位数
返回
String[]
说明
用于将数字格式化为字符串的实用函数。有两个版本:一个用于格式化浮点数,一个用于格式化整数。 digits
和right
参数的值应始终为正整数。 left
参数应为正数或 0。如果为零,则仅格式化右侧。
如上例所示,nf()
用于在数字的左侧和/或右侧添加零。这通常用于对齐数字列表。要从浮点数中获取 remove
数字,请使用 int()
、 ceil()
、 floor()
或 round()
函数。
例子
int a=200, b=40, c=90;
String sa = nf(a, 10);
println(sa); // Prints "0000000200"
String sb = nf(b, 5);
println(sb); // Prints "00040"
String sc = nf(c, 3);
println(sc); // Prints "090"
float d = 200.94, e = 40.2, f = 9.012;
String sd = nf(d, 10, 4);
println(sd); // Prints "0000000200.9400"
String se = nf(e, 5, 3);
println(se); // Prints "00040.200"
String sf = nf(f, 3, 5);
println(sf); // Prints "009.01200"
String sf2 = nf(f, 0, 5);
println(sf2); // Prints "9.01200"
String sf3 = nf(f, 0, 2);
println(sf3); // Prints "9.01"
相关用法
- Processing nfp()用法及代码示例
- Processing nfs()用法及代码示例
- Processing nfc()用法及代码示例
- Processing new用法及代码示例
- Processing normal()用法及代码示例
- Processing norm()用法及代码示例
- Processing noiseSeed()用法及代码示例
- Processing noFill()用法及代码示例
- Processing noise()用法及代码示例
- Processing null用法及代码示例
- Processing noTint()用法及代码示例
- Processing noStroke()用法及代码示例
- Processing noClip()用法及代码示例
- Processing noiseDetail()用法及代码示例
- Processing noSmooth()用法及代码示例
- Processing noLoop()用法及代码示例
- Processing noCursor()用法及代码示例
- Processing FFT用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing FloatDict用法及代码示例
- Processing FFT.stop()用法及代码示例
- Processing join()用法及代码示例
- Processing () (parentheses)用法及代码示例
- Processing Pulse用法及代码示例
- Processing PShader用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 nf()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。