android 把float转换成Int android 把float转换成Int的实例讲解
ThunderRong 人气:01、采用强转的方式
float a = 1.1L; //定义一个float型变量,变量名为a,值为1.1,L表示是浮点型 int b = (int)a;//用(int)强制转换为整型b
2、采用Math.round方式
float a = 1.1L; //定义一个float型变量,变量名为a,值为1.1,L表示是浮点型 int b = Math.round(a);//采用round方式转换为整型
以上这篇android 把float转换成Int的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
加载全部内容