std::to_string, std::stoi, std::stof가 Android에서 사용할 수없는 경우 ...
1438 단어 cocos2d-x
안드로이드의 NDK에 이들이 아직 대응하지 않았기 때문인 것 같습니다.
Xcode에서 Cocos 코드를 검색하면 ...
Cocos2d-x 코드에서 이런 표현이있었습니다.
std::to_string is not supported on android, using std::stringstream instead.
"std::to_string은 Android에서 지원되지 않으므로 std::stringstream을 사용하십시오."
즉 Cocos 개발자도 Android에서는 사용할 수 없다고 말하고 있습니다.
결론 : std::stringstream을 사용합시다.
이런 식으로.
int i = 10;
std::stringstream name;
name << "name_" << i;
std::string myName = name.str(); //name_10
Reference
이 문제에 관하여(std::to_string, std::stoi, std::stof가 Android에서 사용할 수없는 경우 ...), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hp0me/items/349fb50ebed2d3d468be텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)