程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++11中int,float,double與string的轉化,floatdouble

C++11中int,float,double與string的轉化,floatdouble

編輯:C++入門知識

C++11中int,float,double與string的轉化,floatdouble


在C++11中可以使用std::to_string()函數將數值轉換為string格式,十分方便。

以下部分來選自cplusplus.com。

std::to_string

string to_string (int val);
string to_string (long val);
string to_string (long long val);
string to_string (unsigned val);
string to_string (unsigned long val);
string to_string (unsigned long long val);
string to_string (float val);
string to_string (double val);
string to_string (long double val);
Convert numerical value to string

Returns a string with the representation of val.

示例

 1 // to_string example
 2 #include <iostream>   // std::cout
 3 #include <string>     // std::string, std::to_string
 4 
 5 int main ()
 6 {
 7   std::string pi = "pi is " + std::to_string(3.1415926);
 8   std::string perfect = std::to_string(1+2+4+7+14) + " is a perfect number";
 9   std::cout << pi << '\n';
10   std::cout << perfect << '\n';
11   return 0;
12 }

輸出

pi is 3.141593

28 is a perfect numbe

參考資料

[1]http://www.cplusplus.com/reference/string/to_string/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved