QString 转化 char

QString a("123"); QByteArray temp; char *string; temp = a.toLatin1(); string = temp.data(); 

你可能感兴趣的:(QString 转化 char)