摘要:
1) 16进制字符串 a) c#内置api byte[] bytes = BitConverter.GetBytes(123); var hexStr = BitConverter.ToString(bytes); b) 实现1 ///返回低字节顺序十六进制字符串(低字节在左侧) public st 阅读全文
摘要:
1) 取余 math.fmod math.fmod(-5, 3) = -2 原理: 先做除法:-5 / 3 = -1.6666667,按靠0原则去掉小数,即:-1 -5 - (3 * -1) = -2 2) 取模 % -5 % 3 = 1 原理: 先做除法:-5 / 3 = -1.6666667,按 阅读全文