4
A
回答
6
using namespace std;
stringstream ss;
ss << setw(3) << setfill('0') << iCount;
string szB = ss.str();
4
#include <iostream>
#include <sstream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
int iCount = 42;
ostringstream buf;
buf << setw(3) << setfill('0') << iCount;
string s = buf.str();
cout << s;
}
2
如何< <被用來構造一個字符串ALA
這沒有任何意義。
在C++中使用std::ostringstream
如果你想做類似的事情。
std::ostringstream s;
int x=<some_value>;
s<< std::setw(3) << std::setfill('0') <<x;
std::string k=s.str();
相關問題
- 1. 是否需要在C++中使用字符串<iostream>?
- 2. 將字符串轉換成字符 '<' 來比較字符<
- 3. 鑄造字符串到布爾運算符(<, <=, >,> =)
- 4. F# - 鑄造字符串爲<m>?
- 5. 無法轉換詞典<字符串,字典<字符串,字符串>>到的IDictionary <字符串的IDictionary <字符串,字符串>>
- 6. PHP內使用Gettext <<< EOF字符串
- 7. 什麼是和如何使用'<<< END_JAVASCRIPT'字符串?
- 8. 分割字符串使用拆分使用純C++</p> <p>的字符串的字符串C++
- 9. DataTable to Dictionary <字符串,字典<字符串,字典<字符串,字符串>>>
- 10. 請求體的List <KeyValuePair <字符串,字符串>>
- 11. 獲得指數<HashMap的<字符串,字符串>>
- 12. 的ArrayList <HashMap中<字符串,字符串>>爲String []
- 13. 如何按字符讀取.txt文件字符而不使用<iostream>?
- 14. 字典<字符串,字符串>到詞典<控制,對象>使用的IEnumerable <T>。選擇()
- 15. 如何使用JavaScript來解析字符串<markup>符號
- 16. 排序ArrayList <HashMap <字符串,字符串>>使用值
- 17. 如何將字符串轉換爲雙精度型,而僅使用<iostream>,<string>,<cstdlib>,<stdio.h>和<cassert>?
- 18. 使用iostream <<序列化用戶對象
- 19. 超載蟒蛇運算符「<<」作爲C++的iostream
- 20. <iostream>與<iostream.h>與「iostream.h」
- 21. 索引<字符串,ArrayList的<Integer>>使用B樹
- 22. DataTable to Dictionary <字符串,字典<字符串,字符串>>
- 23. 列表與結構<字符串,列表<String>>
- 24. 算法來填充詞典<字符串,字典<字符串,字符串>>鍵入對象
- 25. 排序列表<keyValuePair <字符串,字符串>>
- 26. 詞典<字符串,列表<KeyValuePair <字符串,我已經創建的字符串>>>
- 27. 詞典<字符串,MyClass的>爲List <KeyValuePair <字符串,字符串>>其中KeyValuePair值是MyClass.ToString()
- 28. Strip <?xml和<!DOCTYPE from字符串
- 29. 構造清單<T>來自枚舉<? extends T>
- 30. 使用libclang從字符串構造AST
您可能感興趣的Boost.Format庫:http://www.boost.org/doc/libs/1_41_0/libs/format/index.html – 2010-01-30 19:35:20
請參閱:HTTP://計算器。 COM /問題/ 119098 /這-IO庫-DO-您使用,在你的C代碼/ 119194#119194 – 2010-01-30 19:55:26