我试图将以下代码写入我的编译器并编译它:
#include <iostream>
#include <bitset>
using namespace std;
void binary(int a)
{
cout << bitset<8>(a).to_string() << endl;
}
int main()
{
binary(16);
system("pause");
return 0;
}
它应该给我一个二进制输出,但我不断收到错误:
In function `void binary(int)':
no matching function for call to `std::bitset<8u>::to_string()'
我是 C++ 新手,真的不知道这意味着什么,请帮助我。