タグ付けされた質問 「qtcore」

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.