インフォ FAQ
言語 環境比較
 
Index
 
  Processing 1.0 _ALPHAリファレンスは開発途中である。
もしエラーやコメントがあれば、reas at groupc.netへメールして下さい。
Name  

|| (論理和)

   
Examples  
for(int i=5 ; i<=95; i+=5) { 
  if((i < 35) || (i > 60)) { 
    line(30, i, 80, i); 
  } 
} 
Description  

2つの条件を比較し、もし1つかどちらの評価もである場合、をかえす。どちらの条件もの場合のみをかえす。以下のリストでは、すべての可能な組み合わせが示されている。



true || false // 1つめが真のため真として評価
false || true // 2つめが真のため真として評価
true || true // 2つとも真のため真として評価
false || false // 2つとも偽のため真として評価

   
Syntax  
expression1 || expression2
   
Parameters  
expression1   どんな有効な条件でもよい

expression2   どんな有効な条件でもよい

   
Usage   Web & Application
   
Related   && (論理積)
! (論理否定)
if()
   
© 2004- 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas