QT QString类型转换为const char*

toLatin1、toLocal8Bit都是QString转QByteArray的方法,Latin1代表ASCII,Local8Bit代表unicode。

 

QString str = "date -s 2019/11/12";

system(str.toLatin1());

const char*

指向字符常量的指针

你可能感兴趣的:(QT,QT,QString类型转换,const,char*)