Qt 프로그래밍에서는 텍스트 데이터를 처리하기 위해 QString 객체를 사용하는 것이 일반적입니다. 그러나 때때로 QString을 표준 C 문자열 유형인 std::string으로 변환해야 할 수도 있습니다.
QString을 변환하는 가장 간단하고 직접적인 방법 std::string에 대한 것은 toStdString() 메소드를 사용하는 것입니다:
<code class="cpp">QString qs; // Perform operations on the QString... std::string stdStr = qs.toStdString(); std::cout << stdStr << std::endl;
기본적으로 toStdString()은 내부적으로 QString::toUtf8() 함수를 사용하여 std::string을 생성합니다. 이렇게 하면 변환이 유니코드에 안전하고 ASCII가 아닌 문자를 올바르게 처리할 수 있습니다.
다음은 toStdString() 사용을 보여주는 예입니다.
<code class="cpp">#include <QString> #include <iostream> int main() { QString str = "Hello, world!"; // Convert QString to std::string std::string output = str.toStdString(); // Output the std::string to the console std::cout << output << std::endl; return 0; }</code>
이 프로그램을 실행하면 다음이 인쇄됩니다.
Hello, world!
위 내용은 Qt에서 QString을 std::string으로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!