&& : Java Glossary

&&
Performs a short circuit logical and, on two booleans. && is sometimes called the short circuit and operator or the McCarthy and operator. John McCarthy was one of the LISP (List Processing language) pioneers.

false && falsefalse
false && truefalse
true && falsefalse
true && true

The evaluation is guaranteed to proceed in strict left to right order, and if any boolean is false, it does not evaluate any expressions to the right of

// if s is null, Java won't try to test the length of s
if ( s != null && s.length() > 0 )
    {
    out.println( "non empty string" );
    }

Learning More



CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/mccarthyandoperator.html J:\mindprod\jgloss\mccarthyandoperator.html
logofeedback Please email your feedback for publication, letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email If you want your message kept confidential, not considered for posting, please explicitly specify that.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.211]
You are visitor number 11.