error: invalid operands of types 'int()' and 'int' to binary 'operator%'

template  template 
void BinNode::travPost(VST & visit){
    switch(rand % 2){  //报错;
        case 1: travPost_I1( this, visit); break;
        default: travPost_R( this, visit); break;
    }
}

错误信息如下:error: invalid operands of types 'int()' and 'int' to binary 'operator%'

大致意思就是说:int()和int是操作符%的无效的操作数。

我想难道是rand的类型不是整形?于是我改为了(int)rand % 2;编译通过。虽然通过了,但是毕竟是猜测,我又查了下rand的用法:

1、原型:int rand (void); //产生一个0~RAND_MAX的伪随机数,RAND_MAX的大小是依赖库的,但是标准库下保证至少为32767
2、实例:
v1 = rand() % 100;         // v1 in the range 0 to 99
v2 = rand() % 100 + 1;     // v2 in the range 1 to 100
v3 = rand() % 30 + 1985;   // v3 in the range 1985-2014


这样来看的话,也不是什么类型转换的问题,是我语法写错了,真正正确的写法应该为:

rand() % 2 //产生[0, 2)的随机数;


参考:rand



你可能感兴趣的:(C/C++编程语言,C/C++,debug)