Dart 运算符 ~/

int a = 5;
int b = 2;

print(a / b); // 2.5 // /,返回值为double类型
print(a ~/ b); // 2 // ~/整除,返回值为int类型

你可能感兴趣的:(Flutter,dart)