我想限制浮点值中的小数点数量,我不想round off the value而是对其进行格式化。芭蕾舞女演员中是否有像JavaScript toFixed()这样的特定方法?
我正在使用芭蕾舞女演员0.990.2。
答案 0 :(得分:1)
我认为您正在寻找的是io:sprintf()
。
例如-
float f = 123.4567;
// This will format the floating point number to 2 decimal points.
io:println(io:sprintf("%.2f", f));
有关sprintf
功能的更多信息,请访问https://ballerina.io/learn/api-docs/ballerina/io.html#sprintf