gps_read::gps gps_data; gps_read::gps *gps_info=&gps_data; 什么意思
时间: 2023-12-06 19:04:03 浏览: 113
ReadData_COM1.rar_wince 串口
&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.
阅读全文