«qstring» 태그된 질문

10
QString을 std :: string로 변환하는 방법?
나는 이런 식으로하려고합니다. QString string; // do things... std::cout << string << std::endl; 그러나 코드는 컴파일되지 않습니다. qstring의 내용을 콘솔에 출력하는 방법 (예 : 디버깅 목적 또는 기타 이유로)? 어떻게 변환하기 QString에 std::string?


10
QString에서 char *로 변환
다음 방법으로 QString을 char * 유형으로 변환하려고했지만 작동하지 않는 것 같습니다. //QLineEdit *line=new QLineEdit();{just to describe what is line here} QString temp=line->text(); char *str=(char *)malloc(10); QByteArray ba=temp.toLatin1(); strcpy(str,ba.data()); 이 방법으로 가능한 결함을 자세히 설명하거나 다른 방법을 제공 할 수 있습니까?
94 c++  qt  qstring  qtcore 

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