|| : Java Glossary

||
Performs a short-circuit logical or, on two booleans. || is sometimes called the short circuit or operator or the McCarthy or operator. John McCarthy was one of the LISP (List Processing language) pioneers. The | character is created by hitting shift-\. Sometimes it is displayed with a small gap in the bar, sometimes not. It can be hard to tell apart from Il1! in some fonts.

false || falsefalse
false || truetrue
true || falsetrue
true || truetrue

The evaluation is guaranteed to proceed in strict left to right order, and if any boolean is true, it does not evaluate any expressions to the right of
// if s is null, Java won't bother to test the length of s
if ( s == null || s.length() == 0 )
   {
   out.println( "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/mccarthyoroperator.html J:\mindprod\jgloss\mccarthyoroperator.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.