C语言中badtypecast是什么意思?我定义了一个树结点typedefstruct_tree{voiid*data;structtree*left,*right}treenode;在函数中的代码简单点是这样treenode*p=NULL;uniword*q=(uniword*)malloc(sizeof(uniword));//uniword是一个结构体,给他赋值p-data=q;之后调试的时候我想观察(uniword*)p-data的值结果出现badtypecast?
C语言中 bad type cast是什么意思? 我定义了一个树结点 typedef struct _tree { voiid * data; struct tree * left,* right }treenode;在函数中的代码简单点是这样
treenode * p = NULL;
uniword * q = (uniword *)malloc(sizeof(uniword));
//uniword是一个结构体,给他赋值
p->data = q;
之后调试的时候 我想观察(uniword *)p->data 的值
结果出现bad type cast?
相关考题:
16、C语言中 !是什么意思?A.bit逻辑取反B.不等于C.等于D.左移