本文介绍了一起添加十六进制数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有一个代表十六进制数的2数字数组

index2 = 0x10

index1 = 0xD



有人可以告诉我如何组合这两个数字,这样我就可以得到十六进制值100D



i尝试以下代码







Hi if I got an array of 2 number that represent a hex number
index2 = 0x10
index1 = 0xD

can someone tell me how to combine these two numbers so i can get the hex value 100D

i try the below code



Dim index1, index2, result As Short

    index2 = &H10
    index1 = &HD



    result = index1 + (index2 < 8)

推荐答案

Dim index1, index2, result As UShort

index2 = &H10
index1 = &HD

result = index1 + (index2 << 8)



这篇关于一起添加十六进制数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-16 16:03