早教吧 育儿知识 作业答案 考试题库 百科 知识分享

keil环境下GUI.C(213):warningC275:expressionwithpossiblynoeffect这是是怎么回事?源码如下:voidcursorcov(unsignedchar**stylen,unsignedcharn){\x05unsignedchari,j;\x05stylecursorb=calloc(n,(32*(sizeof(unsignedchar))));\x05for(

题目详情
keil环境下GUI.C(213):warning C275:expression with possibly no effect 这是是怎么回事?
源码如下:
void cursorcov(unsigned char **stylen,unsigned char n)
{
\x05unsigned char i,j;
\x05stylecursorb=calloc(n,(32*(sizeof(unsigned char))));
\x05for(i=0;i
▼优质解答
答案和解析
==号不是=号,没有任何赋值操作.
编译器按照你打的==告诉你,这个语句是多余的,有它和没它运行结果完全相同,有它是徒增计算量.