error C213: left side of asn-op not an lvalue

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error C213: left side of asn-op not an lvalue相关的知识,希望对你有一定的参考价值。

我用keil老是出现这个错误 求高人指教
void DataProcess(void)

ulong time=0;
TIME=TH0;
TIME=(TIME<<8)|TL0;
TIME=V/2;
TIME=TIME/10000;
disnum[0]=(uchar)TIME%10;
disnum[4]=TIME/10;
disnum[1]=(uchar)disnum[4]%10;
disnum[4]=disnum[4]/10;
disnum[2]=(uchar)disnum[4]%10;
disnum[4]=disnum[4]/10;
disnum[3]=(uchar)disnum[4]%10;

参考技术A 左右格式不匹配,TIME为long,数组赋值需int。

[Vue warn]: Error in nextTick: “TypeError: Right-hand side of ‘instanceof‘ is not an object“

 

这样得报错一般都是格式得错误;我将String用引号引起来了,所以造成了错误,也有可能时type得类型错误

 

以上是关于error C213: left side of asn-op not an lvalue的主要内容,如果未能解决你的问题,请参考以下文章

出现left side of asn-op not an lvalue 该怎么改

keil c51 left side of asn-op no lvalue怎么回事?

error C2589: '(' : illegal token on right side of '::' 解决办法

[Vue warn]: Error in nextTick: “TypeError: Right-hand side of ‘instanceof‘ is not an object“

uni-app的报错提示:Error in nextTick: “TypeError: Right-hand side of ‘instanceof‘ is not an object“

C语言中的 error: lvalue required as left operand of assignment