在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
ID: Integer; ByteBuf: array[0..2] of Byte; begin ID := 149259; Move(id,ByteBuf[0],3); //字节顺序会与你的要求相反 end;
ID: Integer; ByteBuf: array[0..2] of Byte; begin ID := 149259; ByteBuf[0] := (ID and $FF0000) shr 16; ByteBuf[1] := (ID and $00FF00) shr 8; ByteBuf[2] := ID and $0000FF; end; |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论