Actionscript 3 中的字节? (从 C++ 到 AS3)
我如何将这个 C++ 代码转换为 AS3
void myFunc(BYTE type)
{
//send type to the network server..
}
how do i convert this C++ code to AS3
void myFunc(BYTE type)
{
//send type to the network server..
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActionScript 3 中没有 BYTE 这样的类型,但您可以使用“int”代替。
它看起来像这样:
正如 Socket 文档中所说:“使用值的低 8 位;忽略高 24 位。”因此只有 8 位将被写入套接字,就像 C++ 中 BYTE 所期望的那样。
There is no such type as BYTE in ActionScript 3 but you can use 'int' instead.
It will looks something like this:
As it said in Socket docs: "The low 8 bits of the value are used; the high 24 bits are ignored." So only 8 bits will be written to socket just like it is expected with BYTE in C++.