溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++ 整型與字符串的互轉(zhuǎn)方式

發(fā)布時(shí)間:2020-08-23 20:47:14 來(lái)源:腳本之家 閱讀:820 作者:flyfish1986 欄目:編程語(yǔ)言

flyfish

字符串轉(zhuǎn)整型

C的方法 cstr是char*或者const char*類型的字符串

int num = atoi(str);
int num = strtol(cstr, NULL, 10);

//10 表示進(jìn)制

C++11的方法

void test1()
{  
std::string str1 = "1";

std::string str2 = "1.5";

std::string str3 = "1 with words";



int myint1 = std::stoi(str1);

int myint2 = std::stoi(str2);

int myint3 = std::stoi(str3);


std::cout << "std::stoi(\"" << str1 << "\") is " << myint1 << '\n';

std::cout << "std::stoi(\"" << str2 << "\") is " << myint2 << '\n';

std::cout << "std::stoi(\"" << str3 << "\") is " << myint3 << '\n';
}

結(jié)果輸出

std::stoi(“1”) is 1 
std::stoi(“1.5”) is 1 
std::stoi(“1 with words”) is 1

//源碼參考cplusplus.com

void test2()
{

 std::string str_dec = "2001, A Space Odyssey";
 std::string str_hex = "40c3";
 std::string str_bin = "-10010110001";
 std::string str_auto = "0x7f";

 std::string::size_type sz;  // alias of size_t

 int i_dec = std::stoi (str_dec,&sz);
 int i_hex = std::stoi (str_hex,nullptr,16);
 int i_bin = std::stoi (str_bin,nullptr,2);
 int i_auto = std::stoi (str_auto,nullptr,0);

 std::cout << str_dec << ": " << i_dec << " and [" << str_dec.substr(sz) << "]\n";
 std::cout << str_hex << ": " << i_hex << '\n';
 std::cout << str_bin << ": " << i_bin << '\n';
 std::cout << str_auto << ": " << i_auto << '\n';

 return 0;
}

輸出

2001, A Space Odyssey: 2001 and [, A Space Odyssey] 
40c3: 16579 
-10010110001: -1201 
0x7f: 127

其他類型 類似

無(wú)符號(hào)整型

stoul

浮點(diǎn)型

stof

數(shù)值轉(zhuǎn)字符串

std::string s;
s = std::to_string(1) + ” is int, “;

其他數(shù)值類型 類似

s = std::to_string(3.14f) + ” is float.”;

以上這篇C++ 整型與字符串的互轉(zhuǎn)方式就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI