«stringstream» 태그된 질문


8
istringstream, ostringstream 및 stringstream의 차이점은 무엇입니까? / 모든 경우에 stringstream을 사용하지 않는 이유는 무엇입니까?
내가 사용하는 것이 때 std::istringstream, std::ostringstream그리고 std::stringstream난 그냥 사용하지 말아야하는 이유 std::stringstream모든 시나리오에서 (모든 런타임 성능 문제가 있습니까?). 마지막으로 스트림을 전혀 사용하지 않고 이에 대해 나쁜 점이 있습니까? std::string stHehe("Hello "); stHehe += "stackoverflow.com"; stHehe += "!";

5
문자열 스트림, 문자열 및 char * 변환 혼동
내 질문은 삶의 문자열 stringstream.str().c_str()이 메모리 에서 어디로 반환 되는지, 왜 const char*?에 할당 할 수 없습니까? 이 코드 예제는 내가 할 수있는 것보다 더 잘 설명합니다. #include <string> #include <sstream> #include <iostream> using namespace std; int main() { stringstream ss("this is a string\n"); string str(ss.str()); const char* cstr1 = …



2
Qt C ++ 집계 'std :: stringstream ss'에 불완전한 유형이 있으며 정의 할 수 없습니다.
정수를 문자열로 변환하는 프로그램에이 함수가 있습니다. QString Stats_Manager::convertInt(int num) { stringstream ss; ss << num; return ss.str(); } 그러나 이것을 실행할 때마다 오류가 발생합니다. aggregate 'std::stringstream ss' has incomplete type and cannot be defined 그게 무슨 뜻인지 잘 모르겠습니다. 그러나 문제를 해결하는 방법을 알고 있거나 더 많은 코드가 필요하면 의견을 …
97 c++  string  qt  stringstream 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.