下面代码的输出竟然是2.0:
float a=1.95f;Debug.Log(a.ToString("0.0"));
如果想截取一位小数,可以:
float a=1.95f;
float t_a=Mathf.Floor(a*10)*0.1f;Debug.Log(t_a.ToString("0.0"));
posted on 2016-05-13 01:13 wantnon 阅读(6552) 评论(0) 编辑 收藏 举报