数据转换

2020-05-09  本文已影响0人  ssas_
public class Test_Memory : MonoBehaviour 
{
    private void Start()
    {
        // int类型转换成字节类型(byte)
        int a = 102844551;
        byte[] bytes = BitConverter.GetBytes(a);
        for (int i = 0; i < bytes.Length; i++)
        {
            Debug.LogFormat("bytes[{0}] = {1}",i, bytes[i]);
        }
        //result = bytes[0]135 bytes[1]72 bytes[2]33 bytes[3]6

        // 字节类型(byte)类型转换成int
        int b = BitConverter.ToInt32(bytes, 0);
        Debug.Log(b);
        //result = 102844551
    }
}
上一篇下一篇

猜你喜欢

热点阅读