那个,private float scree,然后用的是public float getScree(){
return scree}
中float的意义和作用是啥?
为什么
private int num;
public float getNum(){return num}
中也可以使用float型返回值?
这个数据 是小数型就用FLOAT
public float getNum(){return num}可能是把num强制转换成float型把