📜  在飞镖代码示例中拆分双精度值

📅  最后修改于: 2022-03-11 14:48:09.643000             🧑  作者: Mango

代码示例1
final double abc = 1.4;
int x = abc.toInt();
int y = int.tryParse(abc.toString().split('.')[1]);