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

问题描述

我有以下的code:

SN.get_Chars(5)

SN.get_Chars(5)

SN是一个字符串,所以这应该给5号字符
OK!

SN is a string so this should give the 5th CharOk!

现在我还有一个code,但:SN.get_Chars(0×10)

Now i have another code but : SN.get_Chars(0x10)

我不知道为0x10是什么?它是多少?如果是这样,那么是什么十进制的?

I wonder what 0x10 is? Is it a number? If it's so, then what is it in decimal notation?

推荐答案

0X意味着数字是,或基16。

0x means the number is hexadecimal, or base 16.

为0x10为16。

这篇关于什么是为0x10十进制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 08:15