在c++ mfc中出现byte word dword 有啥实用意义

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在c++ mfc中出现byte word dword 有啥实用意义相关的知识,希望对你有一定的参考价值。

  主要是为了在编写和阅读源码时方便。它们在windef.h的头文件中被定义。
  typedef unsigned char BYTE
  typedef unsigned short WORD;
  typedef unsigned long DWORD
  具体的意思:
  BYTE:8-bit整数,未带正负号
  DWORD:32-bit整数,未带正负号
  WORD:16-bit 整数 ,未带正负号
参考技术A
typedef unsigned char BYTE

typedef unsigned short WORD

typedef unsigned long DWORD

本回答被提问者采纳
参考技术B byte定义自己变量,占用8位内存
word定义字变量,占用16位内存
dword定义双子变量,占用32位内存
参考技术C 实际上就是 uint8_t (unsigned char), uint16_t (unsigned short), uint32_t (unsigned long)
windows api里用BYTE WORD DWORD表示而已。

以上是关于在c++ mfc中出现byte word dword 有啥实用意义的主要内容,如果未能解决你的问题,请参考以下文章

在C++的MFC工具栏按钮中实现改变单文档字体大小的方法

c++如何读取word

C++ MFC CString怎么转换成Double

c++堆栈溢出问题?

MFC多文档OpenDocumentFile的一个问题

关于Visual Studio 2013 编译 multi-byte character set MFC程序出现 MSB8031 错误的解决办法