std::string 에 cout 와 비슷하게 값 입력 받는 방법
STL 2007. 9. 6. 14:43 |float, int 등을 string 변환 - ostringstream 이용
#include <sstream>
std::ostringstream outstream;
outstream << 숫자등등
std::string str = outstream .str()
float, int 등을 string 변환 - ostringstream 이용
#include <sstream>
std::ostringstream outstream;
outstream << 숫자등등
std::string str = outstream .str()