ANDALSO: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{DISPLAYTITLE:_ANDALSO}}
{{DISPLAYTITLE:_ANDALSO}}
[[_ANDALSO]] is a [[Boolean|boolean]] logical operator that performs short-circuiting logical conjunction on two expressions.
'''_ANDALSO''' is a [[Boolean|boolean]] logical operator that performs short-circuiting logical conjunction on two expressions.




Line 28: Line 28:


{{PageExamples}}
{{PageExamples}}
''Example:'' AND versus _ANDALSO
;Example: AND versus _ANDALSO
{{CodeStart}}
{{CodeStart}}
{{Cl|DIM}} {{Cl|AS}} {{Cl|LONG}} index, values({{Text|1|#F580B1}} {{Cl|TO}} {{Text|10|#F580B1}}), v
{{Cl|DIM}} {{Cl|AS}} {{Cl|LONG}} index, values({{Text|1|#F580B1}} {{Cl|TO}} {{Text|10|#F580B1}}), v

Revision as of 20:41, 8 December 2024

_ANDALSO is a boolean logical operator that performs short-circuiting logical conjunction on two expressions.


Syntax

result = firstvalue _ANDALSO secondvalue


Description

  • A logical operation is said to be short-circuiting if the compiled code can bypass the evaluation of one expression depending on the result of another expression.
  • If the result of the first expression evaluated determines the final result of the operation, there is no need to evaluate the second expression, because it cannot change the final result.
  • Short-circuiting can improve performance if the bypassed expression is complex, or if it involves procedure calls.
  • If both expressions evaluate to true, result is true.


Availability


Examples

Example
AND versus _ANDALSO
DIM AS LONG index, values(1 TO 10), v

FOR index = 1 TO 10
    values(index) = RND * 255
NEXT index

' value of index is now > 10

PRINT "Trying _ANDALSO"

' _ANDALSO performs short-circuiting logical conjunction and hence the GetArrayValue check is completely bypassed
IF index >= 1 _ANDALSO index <= 10 _ANDALSO GetArrayValue(values(), index, v) THEN
    PRINT "_ANDALSO: Value ="; v
ELSE
    PRINT "_ANDALSO: Outside range."
END IF

PRINT
PRINT "Trying AND"

' AND does not performs short-circuiting logical conjunction and hence QB64-PE will throw a runtime error: Subscript out of range
IF index >= 1 AND index <= 10 AND GetArrayValue(values(), index, v) THEN
    PRINT "AND: Value ="; v
ELSE
    PRINT "AND: Outside range."
END IF

END

FUNCTION GetArrayValue%% (arr() AS LONG, idx AS LONG, value AS LONG)
    value = arr(idx)
    GetArrayValue = -1 ' return true
END FUNCTION


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link