C int與string的轉化

2021-09-17 07:37:15 字數 1460 閱讀 2299

1、使用itoa(int to string)

//char *itoa( int value, char *string,int radix);

// 原型說明:

// value:欲轉換的資料。

// radix:轉換後的進製數,可以是10進製、16進製制等。

// 返回指向string這個字串的指標

int aa = 30;

char c[8];

itoa(aa,c,16);

cout《注意:itoa並不是乙個標準的c函式,它是windows特有的,如果要寫跨平台的程式,請用sprintf。

2、使用sprintf

// int sprintf( char *buffer, const char *format, [ argument] … );

//引數列表

// buffer:char型指標,指向將要寫入的字串的緩衝區。

// format:格式化字串。

// [argument]...:可選引數,可以是任何型別的資料。

// 返回值:字串長度(strlen)

int aa = 30;

char c[8];

int length = sprintf(c, "%05x", aa);

cout<3、使用stringstream

int aa = 30;

stringstream ss;

ss<>s2;

cout《可以這樣理解,stringstream可以吞下不同的型別,根據s2的型別,然後吐出不同的型別。

4、使用boost庫中的lexical_cast

int aa = 30;

string s = boost::lexical_cast(aa);

cout<3和4只能轉化為10進製的字串,不能轉化為其它進製的字串。

1、使用strtol(string to long)

string s = "17";

char* end;

int i = static_cast(strtol(s.c_str(),&end,16));

cout<(strtol(s.c_str(),&end,10));

cout<2、使用sscanf

int i;

sscanf("17","%d",&i);

cout<3、使用stringstream

string s = "17";

stringstream ss;

ss<>i;

cout《注:stringstream可以吞下任何型別,根據實際需要吐出不同的型別。

4、使用boost庫中的lexical_cast

string s = "17";

int i = boost::lexical_cast(s);

cout<

C int與string的轉化

int本身也要用一串字元表示,前後沒有雙引號,告訴編譯器把它當作乙個數解釋。預設情況下,是當成10進製 dec 來解釋,如果想用8進製,16進製制,怎麼辦?加上字首,告訴編譯器按照不同進製去解釋。8進製 oct 字首加0,16進製制 hex 字首加0x或者0x。string前後加上雙引號,告訴編譯器...

C int與string的轉化

int本身也要用一串字元表示,前後沒有雙引號,告訴編譯器把它當作乙個數解釋。預設情況下,是當成10進製 dec 來解釋,如果想用8進製,16進製制,怎麼辦?加上字首,告訴編譯器按照不同進製去解釋。8進製 oct 字首加0,16進製制 hex 字首加0x或者0x。string前後加上雙引號,告訴編譯器...

C int與string的轉化

int本身也要用一串字元表示,前後沒有雙引號,告訴編譯器把它當作乙個數解釋。預設情況下,是當成10進製 dec 來解釋,如果想用8進製,16進製制,怎麼辦?加上字首,告訴編譯器按照不同進製去解釋。8進製 oct 字首加0,16進製制 hex 字首加0x或者0x。string前後加上雙引號,告訴編譯器...