有人在Qt之前看到过“未实现的代码”错误吗?
我正在尝试使用以下代码在Qt中打开pkcs12文件:
QByteArray password="1234";
QString f="/Users/test/Desktop/certs/new.pfx";
QFile pkcs(f);
QFileInfo fileinfo(pkcs);
pkcs.open(QFile::ReadOnly);
QSslKey key;
QSslCertificate cert;
QList<QSslCertificate> imported_certs;
static bool import=QSslCertificate::importPkcs12(&pkcs,&key,&cert,&imported_certs,password);
pkcs.close();
我得到的错误只是:
"Unimplemented Code"
我正在使用Qt版本5.7.0
上面的代码是在类构造函数中实现的;在运行程序以创建类的实例时,控制台中出现“未实现的代码”错误(这是一个 Qt控制台应用程序,禁用了GUI)。