Qt常见错误

fatal error: QApplication: No such file or directory

在.pro文件中 添加 QT += widgets

fatal error: QTcpSocket: No such file or directory

在.pro文件中 添加 QT += network

查看添加模块可以用assistant

error: ‘class QString’ has no member named ‘toAscii’

在qt4中QString类和QChar类都有toAscii()用于转为char(ASCii码),但是在5.4中没有,这可急坏了我。
最后我找到了“char toLatin1() const”实现了原计划。

error: ‘setCodecForCStrings’ is not a member of ‘QTextCodec’

在QT5中取消了

猜你喜欢

转载自www.cnblogs.com/wzqstudy/p/10167485.html
今日推荐