Objective C 中的字节

发布于 2024-12-08 00:51:55 字数 351 浏览 1 评论 0原文

我试图声明一个字节,我在 Visual C++ 中这样做是这样的:

static CONST BYTE NEW_REGISTRATION              = 0x30; 

但是在 Objective CI 中这样做是这样的:

const char  NEW_REGISTRATION                = 0x30; 
NSLog(@"output here = %C", NEW_REGISTRATION);

并且我的输出似乎只是简单地

输出在这里 = 0

这是一个编码问题还是我的类型错误?

I am trying to declare a byte which I did in Visual C++ as this:

static CONST BYTE NEW_REGISTRATION              = 0x30; 

but in Objective C I have done as thus:

const char  NEW_REGISTRATION                = 0x30; 
NSLog(@"output here = %C", NEW_REGISTRATION);

and my output seems to be just simply

output here = 0

is it an encoding issue or am I getting the type wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烧了回忆取暖 2024-12-15 00:51:55

Ascii 0x30 代表 0 字符。尝试使用其他内容,例如 0x35。参见表:http://www.asciitable.com/

Ascii 0x30 represents 0 character. Try with something else e.g. 0x35. See table: http://www.asciitable.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文