如何在C头中定义BYTE类型的变量?
我的主程序使用一个变量来存储指向字节的指针。
我如何在标题中定义它?
My main program uses a variable that stores the pointer to a byte.
How would I define that in the header?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你使用C99,你可以这样做:
If you use C99, you could do:
字节不是标准类型,但在许多系统上任何无符号字符都可以在 Windows 上完成工作,我更熟悉 Windows 标头中有一个 BYTE 的 typedef
Byte is not a standard type but on many system any unsigned char will do the job on windows which I am more familiar there is a typedef for BYTE which is available in the windows headders
如果您正在编写与泛型编程相关的内容,则应该使用 void *。
对于大多数系统,您可以使用 unsigned char *。
If you are writing something which relates to generic programming,you should use the void *.
for most of the systems though you can use unsigned char *.