使用函式模板將基本數值型別(布林型、字元型、整型、實型)轉成 string。
//ostringstream物件用來進行格式化的輸出,常用於將各種型別轉換為string型別
//ostringstream只支援《操作符
templatestring tostring(const t& t)
int main(int argc, char* argv)
具體做法是先將 string 轉換為 char* 字串,再通過相應的型別轉換函式轉換為想要的數值型別。需要包含標準庫函式
。
(1)string 轉換為 int32_t
string love="77";
int ilove=atoi(love.c_str());
//或者16位平台轉換為long int
int ilove=strtol(love.c_str(),null,10);
(2)string 轉換為 uint32_t
//str:待轉換字串
//endptr:指向str中數字後第乙個非數字字元
//base:轉換基數(進製),範圍從2至36
unsigned long int strtoul (const char* str, char** endptr, int base);
//示例
string love="77";
unsigned long ul;
ul = strtoul(love.c_str(), null, 10);
(3)string 轉換為 int64_t
string love="77";
long long lllove=atoll(love.c_str());
(4)string 轉換為 uint64_t
unsigned long long int strtoull (const char* str, char** endptr, int base);
//示例
string love="77";
unsigned long long ull;
ull = strtoull (love.c_str(), null, 0);
(5)string 轉換為 float 或 double
string love="77.77";
float flove=atof(love.c_str());
double dlove=atof(love.c_str());
(6)string 轉換為 long double
long double strtold(const char* str, char** endptr);
使用 c++11 引入的 c++ 庫函式將 string 轉換為數值型別,相應的庫函式申明於標頭檔案
中。
名稱原型
說明stoi
int stoi (const string& str, size_t* idx = 0, int base = 10);
int stoi (const wstring& str, size_t* idx = 0, int base = 10);
convert string to integer (function template )
stol
long stol (const string& str, size_t* idx = 0, int base = 10);
long stol (const wstring& str, size_t* idx = 0, int base = 10);
convert string to long int (function template)
stoul
unsigned long stoul (const string& str, size_t* idx = 0, int base = 10);
unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
convert string to unsigned integer (function template)
stoll
long long stoll (const string& str, size_t* idx = 0, int base = 10);
long long stoll (const wstring& str, size_t* idx = 0, int base = 10);
convert string to long long (function template)
stoull
unsigned long long stoull (const string& str, size_t* idx = 0, int base = 10);
unsigned long long stoull (const wstring& str, size_t* idx = 0, int base = 10);
convert string to unsigned long long (function template)
stof
float stof (const string& str, size_t* idx = 0);
float stof (const wstring& str, size_t* idx = 0);
convert string to float (function template )
stod
double stod (const string& str, size_t* idx = 0);
double stod (const wstring& str, size_t* idx = 0);
convert string to double (function template )
stold
long double stold (const string& str, size_t* idx = 0);
long double stold (const wstring& str, size_t* idx = 0);
convert string to long double (function template)
形參說明:
str:過載了 string 和 wstring 版本,表示被轉換的字串。
idx:表示乙個size_t*
的指標型別,預設為空值。不為空時,轉換成功時獲取第乙個非數值字元相對於首字元的偏移下標,也表示成功轉換的字元數量,如 「10」 成功轉為數值 10 時,*idx
的值為 2。
base:表示數值的基數,預設是 10 進製。
[1] c++ reference
[2] strtoul.c++ reference
[3] strtoull.c++ reference
[4] strtold.c++ reference
C 數值型別與string的相互轉換
使用函式模板將基本資料型別 整型 字元型 實型 布林型 轉換成string。ostringstream物件用來進行格式化的輸出,常用於將各種型別轉換為string型別 ostringstream只支援 操作符 template string tostring const t t cout 14.2 ...
C 數值型別與string的相互轉換
使用函式模板將基本資料型別 整型 字元型 實型 布林型 轉換成string。ostringstream物件用來進行格式化的輸出,常用於將各種型別轉換為string型別 ostringstream只支援 操作符 template string tostring const t t cout 14.2 ...
C 數值型別與string的相互轉換
參考自 include ostringstream物件用來進行格式化的輸出,常用於將各種型別轉換為string型別 ostringstream只支援 操作符 template string tostring const t t cout 14.2 string 輸出14.2 cout 12301 s...