1

我这里有这个功能;音量设置为 500,文件名字符串设置为“test.mp3”。

void Volume(int volume, std::string filename)
        {
        std::string szCommand = "setaudio \"" + filename + "\" volume to " + volume;
        mciSendString(szCommand.c_str(), NULL, 0, 0);
    }

它给了我错误;

no match for 'operator+' in 'std::operator+(std::basic_string<_CharT, _Traits, _Alloc>&&, const _CharT*) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>](((const char*)"\" volume to ")) + volume'|

我不知道为什么,因为下面的函数在加载 .mp3 文件时可以完美运行

void Load(std::string filename)
    {
        std::string szCommand = "open \"" + filename + "\" type mpegvideo alias " + filename;
        mciSendString(szCommand.c_str(), NULL, 0, 0);
    }

我很困惑为什么它不起作用。setaudio 不接受文件名有什么问题?我到处搜索,没有答案,甚至在 MSDN 上也没有。

4

1 回答 1

0

这不起作用,因为volume它是整数而不是字符串。您需要将整数转换为字符串。根据您的编译器,您应该能够使用std::to_string从 int 转换为字符串。

于 2013-10-29T01:13:04.693 回答