Visual Basic .NET Language
शॉर्ट-सर्कुलेटिंग ऑपरेटर (AndAlso - OrElse)
खोज…
वाक्य - विन्यास
- परिणाम = एक्सप्रेशन 1 और एल्सो एक्सप्रेशन 2
- परिणाम = अभिव्यक्ति 1 ओरलसे अभिव्यक्ति 2
पैरामीटर
पैरामीटर | विवरण |
---|---|
परिणाम | आवश्यक है। किसी भी बूलियन अभिव्यक्ति। परिणाम दो अभिव्यक्तियों की तुलना का बूलियन परिणाम है। |
expression1 | आवश्यक है। किसी भी बूलियन अभिव्यक्ति। |
expression2 | आवश्यक है। किसी भी बूलियन अभिव्यक्ति। |
टिप्पणियों
'AndAlso' और 'OrElse' ShortCircuiting ऑपरेटर्स हैं, जिसका अर्थ है कि निष्पादन कम है क्योंकि कंपाइलर बूलियन तुलना में सभी अभिव्यक्तियों का मूल्यांकन नहीं करता है यदि पहले वाला कोई परिणाम नहीं देता है।
AndAlso उपयोग
' Sometimes we don't need to evaluate all the conditions in an if statement's boolean check.
' Let's suppose we have a list of strings:
Dim MyCollection as List(Of String) = New List(of String)()
' We want to evaluate the first value inside our list:
If MyCollection.Count > 0 And MyCollection(0).Equals("Somevalue")
Console.WriteLine("Yes, I've found Somevalue in the collection!")
End If
' If MyCollection is empty, an exception will be thrown at runtime.
' This because it evaluates both first and second condition of the
' if statement regardless of the outcome of the first condition.
' Now let's apply the AndAlso operator
If MyCollection.Count > 0 AndAlso MyCollection(0).Equals("Somevalue")
Console.WriteLine("Yes, I've found Somevalue in the collection!")
End If
' This won't throw any exception because the compiler evaluates just the first condition.
' If the first condition returns False, the second expression isn't evaluated at all.
Orlse उपयोग
' The OrElse operator is the homologous of AndAlso. It lets us perform a boolean
' comparison evaluating the second condition only if the first one is False
If testFunction(5) = True OrElse otherFunction(4) = True Then
' If testFunction(5) is True, otherFunction(4) is not called.
' Insert code to be executed.
End If
NullReferenceException से बचना
7.0
वरना
Sub Main()
Dim elements As List(Of Integer) = Nothing
Dim average As Double = AverageElementsOrElse(elements)
Console.WriteLine(average) ' Writes 0 to Console
Try
'Throws ArgumentNullException
average = AverageElementsOr(elements)
Catch ex As ArgumentNullException
Console.WriteLine(ex.Message)
End Try
End Sub
Public Function AverageElementsOrElse(ByVal elements As IEnumerable(Of Integer)) As Double
' elements.Count is not called if elements is Nothing so it cannot crash
If (elements Is Nothing OrElse elements.Count = 0) Then
Return 0
Else
Return elements.Average()
End If
End Function
Public Function AverageElementsOr(ByVal elements As IEnumerable(Of Integer)) As Double
' elements.Count is always called so it can crash if elements is Nothing
If (elements Is Nothing Or elements.Count = 0) Then
Return 0
Else
Return elements.Average()
End If
End Function
7.0
और भी
Sub Main()
Dim elements As List(Of Integer) = Nothing
Dim average As Double = AverageElementsAndAlso(elements)
Console.WriteLine(average) ' Writes 0 to Console
Try
'Throws ArgumentNullException
average = AverageElementsAnd(elements)
Catch ex As ArgumentNullException
Console.WriteLine(ex.Message)
End Try
End Sub
Public Function AverageElementsAndAlso(ByVal elements As IEnumerable(Of Integer)) As Double
' elements.Count is not called if elements is Nothing so it cannot crash
If (Not elements Is Nothing AndAlso elements.Count > 0) Then
Return elements.Average()
Else
Return 0
End If
End Function
Public Function AverageElementsAnd(ByVal elements As IEnumerable(Of Integer)) As Double
' elements.Count is always called so it can crash if elements is Nothing
If (Not elements Is Nothing And elements.Count > 0) Then
Return elements.Average()
Else
Return 0
End If
End Function
14.0
विजुअल बेसिक 14.0 ने अशक्त सशर्त ऑपरेटर को पेश किया , जो कि एक स्वच्छ तरीके से कार्यों को फिर से लिखने की अनुमति देता है, उदाहरण के AndAlso
संस्करण के व्यवहार की नकल करता है।
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow