gps_read::gps gps_data; gps_read::gps *gps_info=&gps_data; 什么意思
时间: 2023-12-06 14:04:03 浏览: 117
&gps_data;
This creates a pointer called "gps_info" which points to the memory location of the "gps_data" object. The "gps_data" object is of type "gps" and is declared within the "gps_read" namespace.
相关问题
int gpfpd_analyse(char *buff,gps_read::gps *gpfpd_data) {}什么意思
这是一个函数,函数名为gpfpd_analyse,参数为一个指向字符数组的指针和一个指向gps_read::gps类型的指针。该函数的作用是分析字符数组中的数据,并将解析后的数据存储到指向gps_read::gps类型的指针所指向的位置。具体实现细节需要查看函数的具体定义。
阅读全文