ダーツで数値を丸める方法がありませんか?DartのMath.round()はどこですか?
import 'dart:math';
main() {
print(Math.round(5.5)); // Error!
}
http://api.dartlang.org/docs/bleeding_edge/dart_math.html
ダーツで数値を丸める方法がありませんか?DartのMath.round()はどこですか?
import 'dart:math';
main() {
print(Math.round(5.5)); // Error!
}
http://api.dartlang.org/docs/bleeding_edge/dart_math.html
はい、これを行う方法があります。 num
クラスがround()
と呼ばれる方法があります。ダートで
var foo = 6.28;
print(foo.round()); // 6
var bar = -6.5;
print(bar.round()); // -7
を、すべてが対象です。だから、あなたはNUMを宣言するとき、たとえば、あなたがround method from the num classを通してそれを丸めることができ、次のコードは、あなたのケースでは6
num foo = 5.6;
print(foo.round()); //prints 6
を印刷し、あなたが行うことができます:
main() {
print((5.5).round());
}
を