返回舍入为最近整数的 /f/。
如果数字结尾是 .5,从而使它处于两个整数正中间(其中一个是偶数,另一个是奇数),则返回偶数。
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
void Example() {
Debug.Log(Mathf.RoundToInt(10.0F));
Debug.Log(Mathf.RoundToInt(10.2F));
Debug.Log(Mathf.RoundToInt(10.7F));
Debug.Log(Mathf.RoundToInt(10.5F));
Debug.Log(Mathf.RoundToInt(11.5F));
Debug.Log(Mathf.RoundToInt(-10.0F));
Debug.Log(Mathf.RoundToInt(-10.2F));
Debug.Log(Mathf.RoundToInt(-10.7F));
Debug.Log(Mathf.RoundToInt(-10.5F));
Debug.Log(Mathf.RoundToInt(-11.5F));
}
}