Appending Integer Values to a String in C
最初,這個問題試圖解決將整數附加到字串的問題,但是遇到運行時錯誤。 C 程式語言提供了多種方法來解決此問題。
std::string::append()
std::string::append() 方法期望參數是以null 結尾的字串(char*) 。但是,直接附加整數 (int) 將不會產生所需的結果。
推薦方法
要將整數值附加到字串,請考慮以下內容技術:
std::ostringstream:
std::to_string (C 11):
boost::lexical_cast:
以上是如何在 C 中將整數值附加到字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!