初學c++,總結下在實踐中對於幾種常見內建型別轉換的理解吧。
1、int型與string型的互相轉換
最佳實踐:
int型轉string型
[cpp]view plain
copy
void
int2str(
const
int&int_temp,string &string_temp)
string型轉int型
[html]view plain
copy
void str2int(int &int_temp,const string &string_temp)
在c++中更推薦使用流物件來實現型別轉換,以上兩個函式在使用時需要包含標頭檔案 #include
可選實踐:
int型轉string型
[html]view plain
copy
void str2int(int &int_temp,const string &string_temp)
只需要乙個函式既可以搞定,atoi()函式主要是為了和c語言相容而設計的,函式中將string型別轉換為c語言的char陣列型別作為atoi函式的實參,轉化後是int型。
string型轉int型
[html]view plain
copy
void int2str(const int &int_temp,string &string_temp)
注意,itoa函式在c++中是不被推薦的,在vs中編譯會有警告,這裡可能跟char陣列s的設定有關,如果s設定為小於11在int型數字比較大時會有記憶體洩漏風險。說明下itoa函式如何使用吧,引數列表中第乙個是你要轉換的int型變數,第二個是轉換後的char型陣列變數,第三個是int型的進製,這裡認定為10進製表達的int型,如果是16進製制就寫16。
2、其他型別
float型與string型的轉換
建議同樣適用流的方法,只要把前面函式中int改為float就可以了。此外還有gcvt函式可以實現浮點數到字串的轉換,atof()函式則實現把字串轉換為浮點數。使用方法如下:
[cpp]view plain
copy
float
num;
string str="123.456"
; num=atof(str.c_str());
[cpp]view plain
copy
double
num=123.456;
string str;
char
ctr[10];
gcvt(num,6,ctr);
str=ctr;
其中num預設為double型別,如果用float會產生截斷。6指的是保留的有效位數。ctr作為第三個引數預設為char陣列來儲存轉換後的數字。該函式在vs下編譯時同樣會提示該函式不提倡使用。最後一行將ctr之間轉換為str。
C 中int string等常見型別轉換
原文 初學c 總結下在實踐中對於幾種常見內建型別轉換的理解吧。1 int型與string型的互相轉換 最佳實踐 int型轉string型 cpp view plain copy void int2str const int int temp,string string temp string型轉in...
C 中int string等常見型別轉換
方法一般,以後修改 c 中string char char的轉換 c 中int string等常見型別轉換 1 int型與string型的互相轉換 最佳實踐 int型轉string型 void int2str const int int temp,string string temp static ...
C 中的類,方法等
namespace classlibrary1 public int myproperty 建立屬性,輸入prop tab 2 public string getvalue int id 定義乙個方法 例項方法 public static string getvalue int id 定義乙個方法 ...