論理演算子が短絡チェックを行うことは知っています。つまり、 のようなステートメントがあるA && B && C
場合、ifA
は false でB
あり、C
評価されません。B
しかし、これはとC
が関数呼び出しの場合にも当てはまりますか?
たとえば、次のコードの return ステートメント:
bool areIdentical(struct node * root1, struct node *root2)
{
/* base cases */
if(root1 == NULL && root2 == NULL)
return true;
if(root1 == NULL || root2 == NULL)
return false;
/* Check if the data of both roots is same and data of left and right
subtrees are also same */
return (root1->data == root2->data && //I am talking about this statement
areIdentical(root1->left, root2->left) &&
areIdentical(root1->right, root2->right) );
}