整数を文字列に変換したかったのですが、itoa の使用は標準的ではないため、調査の結果、OStringStream を使用するのが最善の方法であることがわかりました。ここにいくつかの擬似コードがあります:
#include <iostream>
#include <cmath>
#include <cstdlib>
std::string plusMinus(int x) {
std::ostringstream x_str;
// more code here obviously
}
int main(int argc, const char * argv[])
{
// some cin/cout functions here
}
"std::ostringstream 行: "未定義のテンプレートの暗黙のインスタンス化" でエラーが発生します。