溫馨提示×

溫馨提示×

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

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

C++中怎么使用stringstream對字符串進(jìn)行轉(zhuǎn)換

發(fā)布時間:2021-08-05 17:49:35 來源:億速云 閱讀:230 作者:Leah 欄目:大數(shù)據(jù)

這篇文章給大家介紹C++中怎么使用stringstream對字符串進(jìn)行轉(zhuǎn)換,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

假如你有一個字符串,包含字符串值為20。如果你想將其轉(zhuǎn)換為整型值,那么就可以使用stringstream類執(zhí)行相應(yīng)的轉(zhuǎn)換操作。使用stringstream類,同樣也可將整型轉(zhuǎn)換為字符串。要使用std::stringstream類,需要包含頭文件:

#include <sstream>

下面將演示如何使用stringstream類在整型和字符串之間進(jìn)行轉(zhuǎn)換:

#include <fstream>#include <sstream>#include <iostream>using namespace std;int main(){
   
   
   
	cout<<"輸入一個整數(shù):";int Input=0;
	cin>>Input;
   //1.整型轉(zhuǎn)換成字符串
 	stringstream Convert;
	Convert<<Input; //使用運算符<<將Input插入到一個stringstream對象中
	string strInput;
	Convert>>strInput; //使用提取運算符>>將這個整數(shù)轉(zhuǎn)換成string
	cout<<"整型輸入Input= "<<Input<<endl;
	cout<<"使用stringstream轉(zhuǎn)換后得到的字符串,strInput= "<<strInput<<endl;
	
   //2.字符串轉(zhuǎn)換為整型
	stringstream Convert1;
	Convert1<<strInput;int Integer=0;
	Convert1>>Integer;
	cout<<"使用stringstream將字符串轉(zhuǎn)換成整型,Integer= "<<Integer<<endl;return 0;}

關(guān)于C++中怎么使用stringstream對字符串進(jìn)行轉(zhuǎn)換就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

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

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

AI