的目的,我學習struct
和typedef
和我完全新的編碼是什麼類型名字* aliasname的
typedef struct
{
uint8_t ID;
uint8_t TanID;
uint8_t ProductID;
uint8_t SetlTme;
uint8_t NoOfStep
}product_Config;
typedef product_Config *product_Config_Ptr;
我沒有得到什麼是最後一行是爲
typedef product_Config *product_Config_Ptr;
不妨將它想象爲'typedef Tank_Config * Tank_Config_Ptr'。基本上只是一個新的指針類型。 – Iluvatar
我覺得最後的typedef是不好的味道。當某種類型是指針時,你想立刻知道。但是YMMV。 –