如何将string类型的数据转换成uint32_t的情况

//先定义一个string类型的函数
String a;
int b = atoi(a.c_str());  //使用函数atoi
//当然想转换为其他函数
uint32_t b atoi(a.c_str()); //该效果也是可以的
 
 

你可能感兴趣的:(c++)