#include <string> #include <sstream> #include <iostream> #include <iomanip> using namespace std; main() { unsigned char x[10] = {0x00, 0x01, 0x02, 0x1f, 0x4c, 0x5d, 0x06, 0x07, 0x08, 0x09}; std::stringstream ss; for(int i=0;i<10; i++) { int tm = x[i]; ss << std::hex << std::setw(2) <<std::setfill('0') << tm; ss << " "; } string a = ss.str(); std::cout << "string is : " << a <<std::endl; } |
for(int i=0;i<10; i++) { ss << std::hex << std::setw(2) <<std::setfill('0') << x[i]; ss << " "; } |
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |