Qt6中已经没有QSound
类,播放音频需要使用QSoundEffect
类
首先在.pro
文件中添加multimedia
模块
使用方法:
#include <QSoundEffect>
QSoundEffect * startSound = new QSoundEffect(this);
startSound->setSource(QUrl::fromLocalFile(":/res/"));
startSound->play();
尤其需要注意QUrl
的使用方式