Operator Precedence is a rule used to clarify unambiguously which procedures should be performed first in a given expression

learn more… | top users | synonyms

114
votes
1answer
2k views

Why does (1 in [1,0] == True) evaluate to False?

When I was looking at answers to this question, I found I didn't understand my own answer. I don't really understand how this is being parsed. Why does the second example return False? >>> ...
101
votes
6answers
85k views

Operator precedence with Javascript Ternary operator

I cant seem to wrap my head around the first part of this code ( += ) in combination with the ternary operator. h.className += h.className ? ' error' : 'error' The way i think this code works is as ...
58
votes
12answers
4k views

Why is $a + ++$a == 2?

If I try this: $a = 0; echo $a + ++$a, PHP_EOL; echo $a; I get this output: 2 1 Demo: http://codepad.org/ncVuJtJu Why is that? I expect to get this as an output: 1 1 My understanding: ...
41
votes
15answers
5k views

a = (a++) * (a++) gives strange results in Java [closed]

I'm studying for the OCPJP exam, and so I have to understand every little strange detail of Java. This includes the order in which the pre- and post-increment operators apply to variables. The ...
35
votes
5answers
3k views

Why does the Perl conditional operator not do what I expect?

This snippet of Perl code in my program is giving the wrong result. $condition ? $a = 2 : $a = 3 ; print $a; No matter what the value of $condition is, the output is always 3, how come? Edit: I ...
34
votes
3answers
3k views

What are the rules for evaluation order in Java?

I am reading some Java text and got the following code: int[] a = {4,4}; int b = 1; a[b] = b = 0; In the text, the author did not give a clear explanation and the effect of the last line is: a[1] = ...
24
votes
6answers
1k views

got an unexpected answer from the x?y:z expression

Here is a simple C++ snippet: int x1 = 10, x2=20, y1=132, y2=12, minx, miny, maxx, maxy; x1<=x2 ? minx=x1,maxx=x2 : minx=x2,maxx=x1; y1<=y2 ? miny=y1,maxy=y2 : miny=y2,maxy=y1; ...
21
votes
8answers
7k views

++ on a dereferenced pointer in C?

Trying to understand the behaviour of pointers in C, i was a little surprised by the following (example code below): #include <stdio.h> void add_one_v1(int *our_var_ptr) { *our_var_ptr = ...
18
votes
4answers
874 views

Why is the Javascript operator “&&” so weird?

a = 1; b = "1"; if (a == b && a = 1) { console.log("a==b"); } The Javascript code above will result in an error in the if statement in Google Chrome 26.0.1410.43: Uncaught ...
18
votes
4answers
957 views

C++ ternary conditional and assignment operator precedence

I'm confused about direct assignment and ternary conditional operators precedence. This code illustrates my confusion : #include<stdio.h> int main(void) { int j, k; j = k = 0; (1 ? ...
17
votes
4answers
3k views

Operator Precedence vs Order of Evaluation

These 2 are highly commonly used terms in programming and extremely important for a programmer to know. And as far as i understand these 2 concepts are tightly bound, one cannot do without the other ...
16
votes
2answers
5k views

Operator precedence in scala

I like scala's propose of operator precedence but in some rare case unmodified rules may be inconvenient because you have restrictions in naming your methods. Is there in scala ways to define another ...
16
votes
3answers
10k views

SQL Logic Operator Precedence: And and Or

Are the two statements below equivalent? SELECT [...] FROM [...] WHERE some_col in (1,2,3,4,5) AND some_other_expr and SELECT [...] FROM [...] WHERE some_col in (1,2,3) or some_col in (4,5) AND ...
15
votes
2answers
226 views

Should you use '||' or lower precedence 'or' when reporting an error in Perl?

While reading the latest edition of The Camel Book I was struck by the following code fragment on p522: use Fcntl ":flock"; eval { local $SIG{ALRM} = sub { die "alarm clock restart" }; alarm ...
14
votes
9answers
2k views

C++ Mystery

Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out. int i = 5; i = ++i + ++i; cout<<i;
14
votes
1answer
602 views

Fixity of backtick operators?

What is the fixity of backtick operators? For instance in this code from Real World Haskell: ghci> (1+) `fmap` [1,2,3] ++ [4,5,6] [2,3,4,4,5,6] It's evident the backtick operator `fmap` has a ...
13
votes
3answers
1k views

C Operator precedence (bitwise & lower than ==)

In the C programing language, why do the bitwise operators (& and |) have lower precedence than the equality operator (==)? It does not make sense to me.
12
votes
5answers
535 views

Chaining Bool values give opposite result to expected

Unthinkingly I wrote some code to check that all the values of a struct were set to 0. To accomplish this I used: bool IsValid() { return !(0 == year == month == day == hour == minute == second); ...
12
votes
7answers
7k views

C# conditional AND (&&) OR (||) precedence

We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same ...
12
votes
5answers
6k views

In Java, what are the boolean “order of operations”?

Let's take a simple example of an object "Cat". I want to be sure the "not null" cat is either orange or grey. if(cat != null && cat.getColor() == "orange" || cat.getColor() == "grey") { ...
12
votes
6answers
2k views

Java operator precedence guidelines

Misunderstanding Java operator precedence is a source of frequently asked questions and subtle errors. I was intrigued to learn that even the Java Language Specification says, "It is recommended that ...
12
votes
1answer
478 views

Irony: How to give KeyTerm precedence over variable?

Relevant chunk of Irony grammar: var VARIABLE = new RegexBasedTerminal("variable", @"(?-i)\$?\w+"); variable.Rule = VARIABLE; tag_blk.Rule = html_tag_kw + attr_args_opt + block; term_simple.Rule = ...
11
votes
6answers
1k views

int[] arr={0}; int value = arr[arr[0]++]; Value = 1?

Today I came a cross an article by Eric Lippert where he was trying to clear the myth between the operators precedence and the order of evaluation. At the end there were two code snippets that got me ...
11
votes
1answer
117 views

Calling a method on a new object in Java without parentheses: order of operations violation?

According to this table of Java operator precedence and associativity, member access has higher precedence than the new operator. However, given a class myClass and a non-static member function ...
9
votes
14answers
922 views

Which side (left or right) of && (and) operator evaluated in C++

Which order is the and && operator evaluated For example the following code if (float alpha = value1-value2 && alpha > 0.001) //do something threw an exception that alpha is ...
9
votes
2answers
561 views

Why does Haskell precedence have only 10 levels? Is the figure of 10 enough?

I want to know why Haskell designers agreed to allow only 10 levels of precedence? Has anybody found it insufficient ?
9
votes
2answers
317 views

Haskell Precedence: Lambda and operator

I found precedence and associativity is a big obstacle for me to understand what the grammar is trying to express at first glance to haskell code. For example, blockyPlain :: Monad m => m t -> ...
9
votes
8answers
1k views

What is the right precedence of the math expression

What is the correct sequence of the math operations in this expression in Java: a + b * c / ( d - e ) 1. 4 1 3 2 2. 4 2 3 1 I understand that result is the same in both ...
9
votes
1answer
241 views

What is the rationale for == having higher precedence than bitwise AND, XOR, and OR? [closed]

In C++, what is the rationale for == and != having higher precedence than bitwise AND, XOR, and OR? It would seem to me more natural to have operator== and operator!= come after operator&, ...
8
votes
5answers
269 views

Operator precedence issue in Perl and PHP

PHP: $a = 2; $b = 3; if($b=1 && $a=5) { $a++; $b++; } echo $a.'-'.$b; $a = 2; $b = 3; if($a=5 and $b=1) { $a++; $b++; } echo $a.'-'.$b; Output 6-16-2.I don't understand the 1 ...
8
votes
3answers
360 views

operator precedence, which result is correct? [duplicate]

Possible Duplicate: Undefined Behavior and Sequence Points What is the value of x after this code? int x = 5; x = ++x + x++; In Java, the result is 12 but in C++, the result is 13. I ...
8
votes
5answers
75 views

Similar syntax but one shows error but another does not

Hiii all I made this program today int main() { int a = 1,2; /* Shows error */ int b = (1,2); /* No error */ } Why first one shows error while second one does not? Just ( ) makes one program ...
8
votes
1answer
205 views

Operator precedence for “<<” and “++” in VS2008 with optimization

I'm stuck with a weird VS2008 C++ issue, that looks like operator precedence is not respected. My question is what is the output of this: int i = 0; std::cout << ((i != 0) ? "Not zero " : ...
8
votes
1answer
133 views

How does operator binding work in this Python example?

I've recently stumbled over this expression: True == False in (False,) It evaluates to False, but I don't understand why. True == False is False and False in (False,) is True, so both (to me) ...
8
votes
3answers
220 views

What should be the output of echo ++$a + $a++ [duplicate]

In the PHP manual, operator precedence section, there is this example: // mixing ++ and + produces undefined behavior $a = 1; echo ++$a + $a++; // may print 4 or 5 I understand the behavior is ...
8
votes
1answer
260 views

operator precedence (void* before bool?)

When answering this question I made some research which really confuses me. I noticed that two ifstreams that succesfully open are not equal but two ifstreams that fail are. At first i checked ...
8
votes
1answer
189 views

Is there a .NET function that will let me compare the precedence of two operators?

Is there a type in the .NET Framework that will compare two operators and determine if one has lower precedence than another? For the time being, I've implemented a function in the form of ...
7
votes
4answers
511 views

Simple Java regex not working

I have this regex which is supposed to remove sentence delimiters(. and ?): sentence = sentence.replaceAll("\\.|\\?$",""); It works fine it converts "I am Java developer." to "I am Java developer" ...
7
votes
2answers
287 views

Change operator precedence

What would be the best way to change operator precedence for a concrete expression? For example I have a class: class A(){ def multiply(a) { ... } def plus(a) { ... ...
6
votes
6answers
350 views

a += a++ * a++ * a++ in Java. How does it get evaluated?

I came across this problem in this website, and tried it in Eclipse but couldn't understand how exactly they are evaluated. int x = 3, y = 7, z = 4; x += x++ * x++ * x++; // gives x = 63 ...
6
votes
3answers
970 views

Why does this C program print weird characters in output?

I've the following program: #include <stdio.h> int main() { int ch; while( ch = getchar() != '\n') { printf("Read %c\n",ch); } return 0; } ...
6
votes
3answers
761 views

List Operator Precedence in Perl

I'm reading the "Beginning Perl" book, and it gives these two statements: print "Test one: ", 6 > 3 && 3 > 4, "\n"; print "Test two: ", 6 > 3 and 3 > 4, "\n"; The first line ...
6
votes
1answer
721 views

why does *p++ = *p - a give strange results?

While working with large arrays, I am doing unsafe pointer computations like the following: *c++ = *a++ - *b++; It works as expected. But for inplace operations, I need the c pointer on the right ...
6
votes
3answers
538 views

How is ++$a + $a++ ambiguous in PHP?

The php manual claims that: $a = 1; echo ++$a + $a++; is ambiguous under its grammar, but it seems extremely clear to me. ++$a and $a++ evaluate first, from left to right, so ++$a increments and ...
6
votes
2answers
169 views

Why is there a level of precedence for operators such as static_cast?

According to cppreference.com, the C++ static_cast operator's level of precedence is 2. Why are those levels even defined? I can't think of any reason. Can anyone provide an example?
6
votes
1answer
1k views

C++ Implicit Conversion Operators Precedence

EDIT: Following Mike Seymour's comment, I replaced operator std::string () const; with operator char * () const; and changed the implementation accordingly. This allows implicit casting, but, for some ...
6
votes
2answers
249 views

What is the precedence of the meta-operator …?

What is the precedence of the meta-operator ... whose job is to unpack template type parameter packs? I imagine it's pretty low, but how low is it? The C++ standard says: The precedence of ...
6
votes
1answer
1k views

Prolog operator precedence and rules matching

I have the next two facts loaded in my prolog interpreter: foo(U+V,1). foo(U*V,2). Now I try the next queries with that results: foo(x*x+x,R). --> R = 1 foo(x+x*x,R). --> R = 1 ...
6
votes
1answer
351 views

How to change code using Scala Parser Combinators to take operator precedence into account?

Consider this part of the grammar: def expression = SimpleExpression ~ opt(relation ~ SimpleExpression) def relation = "=" | "#" | "<=" | "<" | ">=" | ">" | "IN" | "IS" def ...
5
votes
3answers
244 views

Testing for null reference always returns false… even when null

If I compile the following code snippet with Visual C# 2010 I ALWAYS get false: object o = null; Console.WriteLine("Is null: " + o == null); // returns false Does anybody know why???

1 2 3 4 5