优化内存的两种方法

方法1:const 定义用表与常量

方法2:结构体内存对齐

#pragma pack(n)
typedef struct XXXX
{
    ...
};
#pragma pack()

你可能感兴趣的:(C/C++编程,c++,单片机)