Tagged Questions
3
votes
6answers
306 views
Is “boolean short circuiting” dictated by standard or just mostly used as optimization? [closed]
EDIT: Found duplicate once I learned the term for this behaviour. Close as duplicate please.
Consider this
Class* p = NULL;
if( p != NULL && p->Method() == OK ){
// stuff
}
On all ...