Actually, I am facing a codebase where developpers decided to use 'AND' and 'OR' instead of '&&' and '||'. I know that there is difference in operators precedence (&& goes before 'and'), but with given framework (prestashop to be precise) is clearly not a reason.
So, my question: which version are you using? Is 'and' more readable than '&&'? || there is ~ difference?
|
|
||||
|
If you use
Want to guess what If you said
If you used Edit: Wow, has it been three years already? As discussed in the comments below, this also works to get the correct value, as parentheses have higher precedence than =
|
|||||||||||||||||||
|
|
Depending on how it's being used, it might be necessary and even handy. http://php.net/manual/en/language.operators.logical.php
But in most cases it seems like more of a developer taste thing, like every occurrence of this that I've seen in CodeIgniter framework like @Sarfraz has mentioned. |
||||
|
|
I guess it's a matter of taste, although (mistakenly) mixing them up might cause some undesired behaviors:
Hence, using && and || is safer for they have the highest precedence. In what regards to readability, I'd say these operators are universal enough. |
|||||
|
|
Precedence differs between && and and (&& has higher precedence than and), something that causes confusion when combined with a ternary operator. For instance,
will return a string whereas
will return a boolean. |
||||
|
|
|
For safety, I always parenthesise my comparisons and space them out. That way, I don't have to rely on operator precedence:
|
|||
|
|
If the coding standards for the particular codebase I am writing code for specifies which operator should be used, I'll definitely use that. If not, and the code dictates which should be used (not often, can be easily worked around) then I'll use that. Otherwise, probably
Is it more readable to you. The answer is yes and no depending on many factors including the code around the operator and indeed the person reading it!
Yes. See logical operators for |
|||
|
|
|
Normally The people who are as Microsoft(VB and .Net) developers always use "AND" and "OR" since it those languages need not to be a Case Sensitive, But the people who are in C, C++, PHP, JAVA are always used "&&" and "||" since those languages are Case Sensitive. This is what my taught... |
|||
|
|
I don't know if there's a precedence difference between |
|||||||
|
~is the bit-wise NOT operator and not the logical. ;-) – Gumbo May 10 '10 at 14:26