相关疑难解决方法(0)

C Typedef和Struct问题

这两个声明之间的区别是什么,并且优先于另一个?

typedef struct IOPORT {  
    GPIO_TypeDef* port;  
    u16           pin;  
} IOPORT;  

typedef struct {  
    GPIO_TypeDef* port;  
    u16           pin;  
} IOPORT;  
Run Code Online (Sandbox Code Playgroud)

c struct typedef namespaces

10
推荐指数
3
解决办法
4487
查看次数

标签 统计

c ×1

namespaces ×1

struct ×1

typedef ×1