Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为一个 Arduino 项目使用一个名为 TinyGPS 的库。该代码具有以下行。
TinyGPS gps;
这是一个typedef还是不是,你能解释一下是什么......
TinyGPS gps; static char dtostrfbuffer[20]; int CS = 53; int LED = 13;
如果它是 C,它要么是 a,要么是typedef其他#defined类型。如果是 C++,它也可以是类、结构或联合。
typedef
#defined
检查预处理器的输出以确定它是什么,或者只是在你的标题周围搜索,直到找到它。
它可以是 typedef,但也可以是结构、类或联合。库文档将告诉您它是什么以及如何使用它。