如何在Dart中分割Double Value?

时间:2019-03-14 11:00:47

标签: dart flutter

我想将两个变量分配给double的整数和小数部分。 怎么做? enter image description here

2 个答案:

答案 0 :(得分:1)

一种方法是

int x = abc.toInt()
int y = int.tryParse(abc.toString().split('.')[1]);

答案 1 :(得分:1)

final double abc = 1.4;
int a = int.parse(abc.toString().split(".")[0]);
int b = int.parse(abc.toString().split(".")[1]);

尝试一下,它应该可以正常工作