请输入您要查询的百科知识:

 

词条 Short-circuit evaluation
释义

  1. Support in common programming languages

  2. Common use

     Avoiding undesired side effects of the second argument 

  3. Possible problems

      Untested second condition leads to unperformed side effect   Code efficiency 

  4. References

{{distinguish|Short-circuit test}}{{Refimprove|date=August 2013}}{{Programming evaluation}}

Short-circuit evaluation, minimal evaluation, or McCarthy evaluation (after John McCarthy) is the semantics of some Boolean operators in some programming languages in which the second argument is executed or evaluated only if the first argument does not suffice to determine the value of the expression: when the first argument of the AND function evaluates to false, the overall value must be false; and when the first argument of the OR function evaluates to true, the overall value must be true. In some programming languages (Lisp, Perl, Haskell because of lazy evaluation), the usual Boolean operators are short-circuit. In others (Ada, Java, Delphi), both short-circuit and standard Boolean operators are available. For some Boolean operations, like exclusive or (XOR), it is not possible to short-circuit, because both operands are always required to determine the result.

The short-circuit expression x and y is equivalent to the

conditional expression

(True if y else False) if x else False; the expression

x or y is equivalent to

True if x else True if y else False.

Short-circuit operators are, in effect, control structures rather than simple arithmetic operators, as they are not strict. In imperative language terms (notably C and C++), where side effects are important, short-circuit operators introduce a sequence point – they completely evaluate the first argument, including any side effects, before (optionally) processing the second argument. ALGOL 68 used proceduring to achieve user-defined short-circuit operators and procedures.

In loosely typed languages that have more than the two truth-values

True and False, short-circuit operators may return the

last evaluated subexpression. The expression x and y is

equivalent to y if x else x; the expression

x or y is equivalent to

x if x else y (without evaluating x

twice). This is called "last value" in the table below.

In languages that use lazy evaluation by default (like Haskell), all functions are effectively short-circuit, and special short-circuit operators are not needed.

The use of short-circuit operators has been criticized as problematic:

{{Quote
|text = The conditional connectives — "cand" and "cor" for short — are ... less innocent than they might seem at first sight. For instance, cor does not distribute over cand: compare

(A cand B) cor C with (A cor C) cand (B cor C);

in the case ¬A ∧ C , the second expression requires B to be defined, the first one does not. Because the conditional connectives thus complicate the formal reasoning about programs, they are better avoided.


|author = Edsger W. Dijkstra[1]}}

Support in common programming languages

Boolean operators in various languages
Language Eager operators Short-circuit operators Result type
Advanced Business Application Programming (ABAP) none and, or Boolean1
Ada and, or and then, or else Boolean
ALGOL 68 and, &, ∧ ; or, ∨andf , orf (both user defined)}} Boolean
awk none &&, Boolean
C, Objective-C none &&, , ?[2] int (&&,), opnd-dependent (?)
C++2 none &&, , ?[3] Boolean (&&,), opnd-dependent (?)
C#&, > &&, , ?, ?? Boolean (&&,), opnd-dependent (?, ??)
ColdFusion Markup Language (CFML) none AND, OR, &&, Boolean
D3&, > &&, , ? Boolean (&&,), opnd-dependent (?)
Eiffel and, or and then, or else Boolean
Erlang and, or andalso, orelse Boolean
Fortran4 .and., .or. .and., .or. Boolean
Go, Haskell, OCaml none &&, Boolean
Java, MATLAB, R, Swift&, > &&, Boolean
JavaScript, Julia&, > &&, Last value
Lasso none and, or, &&, Last value
Kotlin and, or &&, Boolean
Lisp, Lua, Scheme none and, or Last value
MUMPS (M) &, ! none Numeric
Modula-2 none AND, OR Boolean
Oberon none &, OR Boolean
OCaml none &&, Boolean
Pascal and, or5,9 and_then, or_else6,9 Boolean
Perl, Ruby&, > &&, and, , or Last value
PHP&, > &&, and, , or Boolean
Python&, > and, or Last value
Rust&, >&&, [4]Boolean
Smalltalk&, > and:, or:7 Boolean
Standard ML {{unk}} andalso, orelse Boolean
TTCN-3 none and, or[5] Boolean
Visual Basic .NET And, Or AndAlso, OrElse Boolean
VBScript, Visual Basic, Visual Basic for Applications (VBA) And, Or Select Case8 Numeric
Wolfram Language And @@ {...}, Or @@ {...} And, Or, &&, Boolean
1 ABAP has no distinct boolean type.
2 When overloaded, the operators && and || are eager and can return any type.
3 This only applies to runtime-evaluated expressions, static if and static assert. Expressions in static initializers or manifest constants use eager evaluation.
4 Fortran operators are neither short-circuit nor eager: the language specification allows the compiler to select the method for optimization.
5 ISO/IEC 10206:1990 Extended Pascal allows, but does not require, short-circuiting.
6 ISO/IEC 10206:1990 Extended Pascal supports and_then and or_else.[6]
7 Smalltalk uses short-circuit semantics as long as the argument to and: is a block (e.g., false and: [Transcript show: 'Wont see me']).
8 BASIC languages that supported CASE statements did so by using the conditional evaluation system, rather than as jump tables limited to fixed labels.
9 Delphi_(programming_language) and Free_Pascal default to short circuit evaluation. This may be changed by compiler options but does not seem to be used widely.

Common use

Avoiding undesired side effects of the second argument

Usual example, using a C-based language:

int denom = 0;

if (denom != 0 && num / denom)

{

}

Consider the following example:

int a = 0;

if (a != 0 && myfunc(b))

{

}

In this example, short-circuit evaluation guarantees that myfunc(b) is never called. This is because a != 0 evaluates to false. This feature permits two useful programming constructs.

  1. If the first sub-expression checks whether an expensive computation is needed and the check evaluates to false, one can eliminate expensive computation in the second argument.
  2. It permits a construct where the first expression guarantees a condition without which the second expression may cause a run-time error.

Both are illustrated in the following C snippet where minimal evaluation prevents both null pointer dereference and excess memory fetches:

bool is_first_char_valid_alpha_unsafe(const char *p)

{

}

bool is_first_char_valid_alpha(const char *p)

{

}

Possible problems

Untested second condition leads to unperformed side effect

Despite these benefits, minimal evaluation may cause problems for programmers who do not realize (or forget) it is happening. For example, in the code

if (expressionA && myfunc(b)) {

}

if myfunc(b) is supposed to perform some required operation regardless of whether do_something() is executed, such as allocating system resources, and expressionA evaluates as false, then myfunc(b) will not execute, which could cause problems. Some programming languages, such as Java, have two operators, one that employs minimal evaluation and one that does not, to avoid this problem.

Problems with unperformed side effect statements can be easily solved with proper programming style, i.e., not using side effects in boolean statements, as using values with side effects in evaluations tends to generally make the code opaque and error-prone.[7]

Since minimal evaluation is part of an operator's semantic definition and not an (optional) optimization, many coding patterns{{Which|date=July 2010}} have come to rely on it as a succinct (if idiomatic) conditional construct. Examples include:

Perl idioms:

some_condition or die; # Abort execution if some_condition is false

some_condition and die; # Abort execution if some_condition is true

BASH (UNIX shell script) idioms[8]:

modprobe -q some_module && echo "some_module installed" || echo "some_module not installed"

Code efficiency

Short-circuiting can lead to errors in branch prediction on modern central processing units (CPUs), and dramatically reduce performance. A notable example is highly optimized ray with axis aligned box intersection code in ray tracing.{{clarify|date=November 2010}} Some compilers can detect such cases and emit faster code, but programming language semantics may constrain such optimizations.{{cn|date=October 2016}}

References

1. ^ Edsger W. Dijkstra "On a somewhat disappointing correspondence", EWD1009-0, 25 May 1987 full text
2. ^ISO/IEC 9899 standard, section 6.5.13
3. ^ISO/IEC IS 14882 draft.
4. ^{{Cite web|url=https://doc.rust-lang.org/std/ops/index.html|title=std::ops - Rust|website=doc.rust-lang.org|access-date=2019-02-12}}
5. ^[https://www.etsi.org/deliver/etsi_es/201800_201899/20187301/04.10.01_60/es_20187301v041001p.pdf ETSI ES 201 873-1 V4.10.1, section 7.1.4]
6. ^{{cite web|url=http://www.gnu-pascal.de/gpc/and_005fthen.html#and_005fthen#GNU |title=and_then - The GNU Pascal Manual |publisher=Gnu-pascal.de |date= |accessdate=2013-08-24}}
7. ^{{cite web |url=http://www.itu.dk/people/sestoft/papers/SondergaardSestoft1990.pdf |title=Referential Transparency, Definiteness and Unfoldability |publisher=Itu.dk |accessdate=2013-08-24}}
8. ^{{cite web |url=https://unix.stackexchange.com/questions/190543/what-does-mean-in-bash |title=What does || mean in bash? |publisher=stackexchange.com |accessdate=2019-01-09}}
{{DEFAULTSORT:Short-Circuit Evaluation}}

6 : Articles with example C code|Articles with example Perl code|Compiler optimizations|Conditional constructs|Evaluation strategy|Implementation of functional programming languages

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/23 19:19:26