在 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。這可確保轉換是 Unicode 安全的,正確處理非 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中文網其他相關文章!