정수를 문자열로 변환하는 프로그램에이 함수가 있습니다.
QString Stats_Manager::convertInt(int num)
{
stringstream ss;
ss << num;
return ss.str();
}
그러나 이것을 실행할 때마다 오류가 발생합니다.
aggregate 'std::stringstream ss' has incomplete type and cannot be defined
그게 무슨 뜻인지 잘 모르겠습니다. 그러나 문제를 해결하는 방법을 알고 있거나 더 많은 코드가 필요하면 의견을 남겨주세요. 감사.
제쳐두고, QString에는 숫자에서 문자열을 구성하는 정적 함수가 있습니다. 그건 QString :: 번호 .
—
cgmb
#include <sstream>