將整數附加到std::string 下面的程式碼嘗試使用append 將整數附加到std::string () 方法: 但是,此程式碼將導致偵錯斷言失敗。這是因為append()方法期望它的參數是以NULL結尾的字串(char*)。 有幾種方法可以將整數附加到std::string: std::ostringstream: std::to_string(C 11 及更高版本): boost::lexical_cast: