具體用法可以看這裡:to_string,測試例子:
// to_string example
#include // std::cout
#include // std::string, std::to_string
int main ()
但是博主在使用clion編輯程式的時候,發現住哪好要求包含了檔案,但是編輯器報錯。
經過查詢發現是mingw本身的問題,目前已經解決,特給出解決方案:
2. 將補丁包中的wchar.h 和 stdio.h複製到mingw安裝路徑下[%路徑%]\mingw\include,覆蓋掉原來的。如果找不到mingw的安裝路徑,可以檢視你的ide裡的配置,例如clion中為設定下》工具鏈》環境中。
3.將補丁包中的os_defines.h ,拷貝到[%路徑%]\mingw\lib\gcc\mingw32\4.7.0\include\c++\mingw32\bits下。
4.修復完畢。
假如按照步驟沒有修復,可以看這裡:stackoverflow:
C 中ToString格式大全
字元型轉換為字串 c 貨幣 2.5.tostring c 2.50 d 10進製數 25.tostring d5 25000 e 科學型 25000.tostring e 2.500000e 005 f 固定點 25.tostring f2 25.00 f?表示保持幾位小數 g 常規 2.5.tos...
C 中ToString格式大全
c 貨幣2.5.tostring c 2.50 d十進位制數 25.tostring d5 00025 e科學型 25000.tostring e 2.500000e 005 f固定點 25.tostring f2 25.00g常規 2.5.tostring g 2.5n 數字2500000.tos...
C 中ToString格式大全
c 貨幣2.5.tostring c 2.50 d十進位制數 25.tostring d5 e科學型 25000.tostring e 2.500000e 005 f固定點 25.tostring f2 25.00g常規 2.5.tostring g 2.5n 數字2500000.tostring ...