首頁 >後端開發 >C++ >如何在 C 中不使用 itoa() 將整數轉換為字串?

如何在 C 中不使用 itoa() 將整數轉換為字串?

DDD
DDD原創
2024-12-08 13:10:13318瀏覽

How to Convert Integers to Strings in C   without itoa()?

C 中不使用itoa() 將整數轉換為字串

問題:

問題:

尋求一個C 中整數到字串轉換的itoa()替代方案,因為它會產生警告

答案:

幸運的是,C 提供了多種解決方案:

  • C 11和Beyond:

    #include <string>
    
    int i = 5;
    std::string s = std::to_string(i);
  • std::to_string:
函數直接將整數轉換為字串:

  • 預C 11:

    #include <sstream>
    
    int i = 5;
    std::stringstream out;
    out << i;
    std::string s = out.str();
  • C Streams: 利用下列流操作:

附加說明: 有問題的範例改編自http://notfaq.wordpress.com/2006/08/30/c-convert-int-to-string/。

以上是如何在 C 中不使用 itoa() 將整數轉換為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn