C++ string字符串 赋值给 uint8_t

uint8_t t[20];
String s="29C 40%";
for(int i=0;i<7;i++){
	t[i]=(uint8_t)(s[i]);
}

 

你可能感兴趣的:(C++ string字符串 赋值给 uint8_t)