已知高4位和低4位,如何合成一个字节.
7 个解决方案
#1
自己用And进行操作不就可以了。
#2
用shl,shr
高4位
a shr 4
低4位
a and $00FF
合成一字节a 低 b 高
a or b shl 4
高4位
a shr 4
低4位
a and $00FF
合成一字节a 低 b 高
a or b shl 4
#3
high4:=a and $F0;
low4:=a and $F
low4:=a and $F
#4
low4=a&&0xf;
high4=a&&0xf0;
high4=a&&0xf0;
#5
so easy question,but i was late
#6
迟了
#7
迟了
#1
自己用And进行操作不就可以了。
#2
用shl,shr
高4位
a shr 4
低4位
a and $00FF
合成一字节a 低 b 高
a or b shl 4
高4位
a shr 4
低4位
a and $00FF
合成一字节a 低 b 高
a or b shl 4
#3
high4:=a and $F0;
low4:=a and $F
low4:=a and $F
#4
low4=a&&0xf;
high4=a&&0xf0;
high4=a&&0xf0;
#5
so easy question,but i was late
#6
迟了
#7
迟了