c string和其他型別互轉

2021-10-03 18:47:13 字數 4109 閱讀 6644

c++數值型別與string的相互轉換:

c++ string的萬能轉換,從long string 之間的轉換來看看:

c++11

使用函式模板將基本資料型別(整型、字元型、實型、布林型)轉換成string。

//ostringstream物件用來進行格式化的輸出,常用於將各種型別轉換為string型別

//ostringstream只支援《操作符

templatestring tostring(const t& t)

int main(int argc, char* ar**)

具體做法是先將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轉換為uint64_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*的指標型別,預設為空值。不為空時,轉換成功時獲取第乙個非數值字元的下標。一般情況下,因為它是直接char型指標把最後非數值字元的位址值和起始位址值相減,所以也表示成功轉換的字元數量,如」10」轉成功為數值10時,*idx的值為2。

base:表示轉換基準,預設是10進製。

* sto*(string str) //改一下函式名,變數型別,搞定

string *tos(* i)     //改一下函式名,改一下型別,搞定

將*換成想要的型別就可以執行 *轉string

int stoi(string str)

float stof(string str)

double stod(string str)

string itos(int i)

string ftos(float f)

string dtos(double d)

atoi()在,配合c_str()

#include #include #include using namespace std;

int main ()

Cstring 和其他型別間的互轉

如何將cstring型別的變數賦給char 型別的變數 1 getbuffer函式 使用cstring getbuffer函式。char p cstring str hello p str.getbuffer str.getlength str.releasebuffer 將cstring轉換成ch...

CString與utf 8互轉及其他型別轉換

string型別的utf 8字串轉為cstring型別的unicode字串 cstring convertutf8tocstring std string utf8str cstring型別的unicode字串轉為string型別的utf 8字串 string unicodetoutf8 cstri...

CString與其他型別的轉換

如何將cstring型別的變數賦給char 型別的變數 1 getbuffer函式 使用cstring getbuffer函式。char p cstring str hello p str.getbuffer str.getlength str.releasebuffer 將cstring轉換成ch...