goto
最后更新于:2022-04-02 04:16:04
[TOC]
## 概述
goto并非完全有害的,程序最终不存在goto,是正确处理的结果,而非避免goto的目标
## 合适的使用场景
### 错误处理和goto
```
sub PurgeFiles (ByRef ErrorState As Error_code)
//code ...
errorState = FIleStatus_Success
fileIindex=0
While(fileIndex
';