码迷,mamicode.com
首页 > 编程语言 > 详细

c++字节数组转换为整型

时间:2014-08-15 12:29:38      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:http   c++   .net   sp   ui   c   net   数组   

http://bbs.csdn.net/topics/360132089 

 

BYTE data[4]={0x00,0x00,0xe6,0x00};//第一句
UINT a11=*(UINT*)data;//第二句


al1表示成0x0000e600
al1 = data[0]<<24 + data[1]<<16 + data[2]<<8 + data[3];

al1表示成0x00e60000
al1 = data[3]<<24 + data[2]<<16 + data[1]<<8 + data[0];

c++字节数组转换为整型,布布扣,bubuko.com

c++字节数组转换为整型

标签:http   c++   .net   sp   ui   c   net   数组   

原文地址:http://www.cnblogs.com/Billy-rao/p/3914369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!