标签:消失 bsp http 警告 com 遇到 变量 des undefined
dest[i++]=src[i];
这行代码,编译时会遇到警告:
warning: operation on ‘i’ may be undefined(对于i变量的操作,有可能是未定义的)
改成
dest[i] = src[i];
i++;//此行应该放在赋值操作符的后面
则警告消失。
参考:https://www.xuebuyuan.com/523380.html
编译警告:warning: operation on ‘i’ may be undefined
标签:消失 bsp http 警告 com 遇到 变量 des undefined
原文地址:https://www.cnblogs.com/jank/p/12180549.html