vf中,int,floor和round 的区别
问题描述:
vf中,int,floor和round 的区别
答
int是向0取整,比如:1.9会变成1,-1.9会变成-1
floor是向下取整,比如:1.8会变成1,-1.1会变成-2(和int不同)
round就是四舍五入了(这个应该不难理解)