Eqv Operator

दो एक्सप्रेशन के लॉज़िकल इक्विवेलेंस की गणना करता है.

Syntax:

परिणाम = एक्सप्रेशन1 Eqv एक्सप्रेशन2

पैरामीटर

Result: Any numeric variable that contains the result of the comparison.

Expression1, Expression2: Any expressions that you want to compare.

When testing for equivalence between Boolean expressions, the result is True if both expressions are either True or False.

In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression.

उदाहरण:

Sub ExampleEqv

Dim A As Variant, B As Variant, C As Variant, D As Variant

Dim vOut As Variant

    A = 10: B = 8: C = 6: D = Null

    vOut = vA > vB Or vB > vD REM -1

    vOut = vB > vA Or vB > vC REM -1

    vOut = vA > vB Or vB > vD REM -1

    vOut = (vB > vD Or vB > vA) REM 0

    vOut = vB Xor vA REM returns 2

End Sub