溫馨提示×

溫馨提示×

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

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

如何通過stringstream實現(xiàn)常用的類型轉(zhuǎn)換

發(fā)布時間:2020-07-29 14:59:26 來源:億速云 閱讀:182 作者:小豬 欄目:編程語言

這篇文章主要講解了如何通過stringstream實現(xiàn)常用的類型轉(zhuǎn)換,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。

其他類型轉(zhuǎn)成string

template <class T>
void toString(string& result,const T &t)
{
  //將各種數(shù)值轉(zhuǎn)換成字符串
  ostringstream oss;
  oss.clear();
  oss << t;
  result.clear();
  result = oss.str();
}

string轉(zhuǎn)成其他類型

template <class T>
void stringToOther(T &t, const string &s)
{
  stringstream ss;
  ss.clear();
  ss << s;
  ss >> t;
}

類型之間的相互轉(zhuǎn)換

template <class inputType,class outputType>
void toConvert(const inputType &input, outputType &output){

  stringstream ss;
  ss.clear();
  ss << input;
  ss >> output;
}

完整代碼

#include <sstream>
#include <iostream>
#include <string>
using namespace std;

template <class T>
void toString(string& result,const T& t);
template <class T>
void stringToOther(T &t, const string &s);
template <class inputType,class outputType>
void toConvert(const inputType &input, outputType &output);

int main(int argc, char** argv)
{
  string s1;
  double a =1.1111;
  toString(s1,a);
  cout<<s1<<endl;
  double b = 0;
  double &bptr =b;
  stringToOther(bptr,s1);
  cout<<bptr<<endl;

  string s2 ="2.222";
  double c1 =0;
  double &c1ptr = c1;
  toConvert(s2,c1ptr);
  cout<<c1ptr<<endl;

  return 0;
}

template <class T>
void toString(string& result,const T &t)
{
  //將各種數(shù)值轉(zhuǎn)換成字符串
  ostringstream oss;
  oss.clear();
  oss << t;
  result.clear();
  result = oss.str();
}

template <class T>
void stringToOther(T &t, const string &s)
{
  stringstream ss;
  ss.clear();
  ss << s;
  ss >> t;
}

template <class inputType,class outputType>
void toConvert(const inputType &input, outputType &output){

  stringstream ss;
  ss.clear();
  ss << input;
  ss >> output;
}

看完上述內(nèi)容,是不是對如何通過stringstream實現(xiàn)常用的類型轉(zhuǎn)換有進一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

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

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

AI