在我的潜艇中,我通常会在继续使用sub之前执行几种形式的验证。退出潜水艇是一个坏习惯吗?例如:
Private Sub mySub()
if Not Validated() then
exit sub
end if
'do stuff
End sub
将整个主体包含在If-Then语句中会更好吗?
private sub mySub()
if validated then
'do stuff
end if
end sub