ASP.net - 函数中的return语句是否会停止该函数?

时间:2010-06-08 10:56:01

标签: asp.net function loops

鉴于功能

'Returns true if no cell is > 1
Function isSolutionValid() As Boolean
    Dim rLoop As Integer
    Dim cLoop As Integer
    For cLoop = 0 To canvasCols - 1
        For rLoop = 0 To canvasRows - 1
            If canvas(cLoop, rLoop) > 1 Then
                Return False
            End If
        Next
    Next
    Return True
End Function

当'return false'被触发时,我假设该函数在那时停止了,并且不需要退出fors和类似的东西?

1 个答案:

答案 0 :(得分:1)

这是正确的。

请参阅Function Statement

  

将控制权返回给代码   称为函数,子,获取,设置或   操作员程序。