如何在C++中设置一个字符?
这可能是非常明显的,事实上,如此明显以至于我在网上找不到任何 C++ 参考资料来记录它。
我需要知道如何在 C/C++ 中设置 char
的字节值。例如,如果我想要char中的字节值233,我该怎么办?
This is probably very obvious, in fact so obvious that no C++ reference I could find online cares to document it.
I need to know how to set the byte value of a char
in C/C++. For example, if I want the byte value 233 in the char, how do I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这太明显了:
Yes, it is too obvious:
一个 char 是一个 1byte 的 int。因此,您可以像设置 int 一样设置该值。
ETC...
A char is a 1byte int. So you can set the value in the same way as you would an int.
etc...
是的,字面意思就是这么简单。
Yea, literally as simple as that.