昨天做比赛的时候发现了一个奇怪bug,下面是我写的一个测试程序,
运行后会显示:
[Error] no match for 'operator==' (operand types are '__gnu_cxx::__alloc_traits<std::allocator<node> >::value_type {aka node}' and 'node')
环境是Dev 5.11,这判断符两边的数据类型是一样的啊,为什么会报错?求解答
#include <iostream>
#include <vector>
using namespace std;
struct node
{
int k;
};
int main()
{
vector<node>a(7);
a[3].k=0;
node t;
t.k=0;
if(a[3]==t)
{
cout<<"1";
}
else
{
cout<<"0";
}
}