Dart:floor() 和 toInt() 有什么区别
Dart: What is the difference between floor() and toInt()
我想在不舍入的情况下截断双精度数的所有小数。我这里有两种可能:
double x = 13.5;
int x1 = x.toInt(); // x1 = 13
int x2 = x.floor(); // x2 = 13
这两种方法有什么区别吗?
我想在不舍入的情况下截断双精度数的所有小数。我这里有两种可能:
double x = 13.5;
int x1 = x.toInt(); // x1 = 13
int x2 = x.floor(); // x2 = 13
这两种方法有什么区别吗?