c++ 开发调试bug 报错
c2362错误
goto语句的使用错误。
我的使用是这样的:
goto __end;
int nLen = value;
gto _end;
int pBuffer = value2;
end:
我的 nlen 和 pBuffer 直接初始化了,而 goto 与标签之间有任何初始化的语句都不可以,除非用括号把它们括起来。
所以代码改为:
goto __end;
{
int nLen = value;
gto _end;
{
int pBuffer = value2;
}
}
end:
调试通过,又解决一个问题
如有帮助,点赞收藏关注!