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()); 이 방법으로 가능한 결함을 자세히 설명하거나 다른 방법을 제공 할 수 있습니까?