美文网首页
Representing Strings

Representing Strings

作者: 坠入莱茵河 | 来源:发表于2017-05-03 18:10 被阅读0次

在代码中字符串通常用ASCII码来编译
机器执行"12345"会使用 31 32 33 34 35 来编译

字符串 "abcdef" 的ASCII码表示

a through z have ASCII codes 0x61 througn 0x7A

"abcdef" > 61 62 63 64 65

相关文章

网友评论

      本文标题:Representing Strings

      本文链接:https://www.haomeiwen.com/subject/fhynzttx.html