Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
15answers
3k 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 ...
29
votes
5answers
2k 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 ...
28
votes
3answers
1k 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] = ...
15
votes
4answers
235 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 ? ...
12
votes
1answer
280 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 = ...
12
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;
11
votes
1answer
248 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 ...
11
votes
5answers
311 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); ...
11
votes
4answers
913 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 ...
9
votes
8answers
558 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 ...
8
votes
5answers
130 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
1answer
151 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
5answers
71 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
147 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
14answers
580 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 ...
8
votes
6answers
881 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 ...
7
votes
3answers
207 views

operator precedence, which result is correct? [closed]

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 ...
7
votes
4answers
206 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" ...
6
votes
2answers
85 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
2answers
198 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
152 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 ...
6
votes
3answers
560 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
2answers
2k 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 ...
6
votes
2answers
738 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 ...
5
votes
1answer
78 views

Operator Precedence in C - Returning a Value

I have this statement: return *local_stack_var2++ + 42; Would these be the proper steps when breaking it down: 1. Dereference local_stack_var2 2. Add 42 to the dereferenced local_stack_var2 ...
5
votes
3answers
139 views

The method execution puzzle in Scala

First I declare a class: class Op(var x : Int) { def +++(op: Op) = { println(this.x + " +++ " + op.x) this.x += op.x this } def ***(op: Op) = { println(this.x + " *** " + ...
5
votes
8answers
140 views

Precedence of ++ and — operators in Java

I read from the official tutorial of Java that prefix and postfix ++ -- have different precedences: postfix: expr++ expr-- unary: ++expr --expr +expr -expr ~ ! Operators According to ...
5
votes
1answer
420 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 ...
5
votes
4answers
132 views

Shortcircuiting: OrElse combined with Or

If I have the following ... a OrElse b ... and a is True then clearly b is never evaluated. But if I add an Or, then what? a OrElse b Or c Does/should c get evaluated? And what if I put in some ...
5
votes
3answers
334 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 ...
5
votes
7answers
254 views

Operator precedence in C#

Is (int)(int1 / (float)var2.Count() * 100) equivalent to (int)((int1 / (float)var2.Count()) * 100) ...and will it use floating point or integer division? Edit... if the answer is yes to the ...
5
votes
8answers
239 views

Order of operations in C. ++ vs |=, which occurs first?

I have the following code that I'm reading through: if( (i%2) == 0 ){ *d = ((b & 0x0F) << 4); } else{ *d++ |= (b & 0x0F); }; I'm looking specifically at the else statement ...
5
votes
5answers
1k 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") { ...
5
votes
8answers
2k 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 ...
4
votes
2answers
115 views

Change operator precedence in Groovy

I there any way to change operator precedence in Groovy like it is done in Haskell? For example I have a class: class A(){ def rightShift(a) { ... } def and(a) { ... ...
4
votes
7answers
328 views

Operator Precedence - Expression Evaluation

For the following code snippet I get the output as 1. I want to know how it came? void main() { int x=10,y=20,z=5,i; i=x<y<z; printf("%d",i); }
4
votes
1answer
218 views

Lambda expression oddity

Long story short. I have 2 lists which contain the same type (but are used for different things) and I want to know if EITHER list contains an item with a certain name. My original code, which worked ...
4
votes
4answers
280 views

Pointer increment operator errors

Ok so this one has me really confused. I'm working on a HW problem, and discovered something that was really weird to me. here is the function and call in question int find_oldest_frame(int **a, int ...
4
votes
4answers
177 views

JavaScript Operator Precedence logic confuses me

The operator precedence table I can find is: https://developer.mozilla.org/en/JavaScript/Reference/Operators/Operator_Precedence according to the table, both '>>' and '*' are left-to-right ...
4
votes
3answers
2k 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 ...
3
votes
1answer
33 views

mod_rewrite: the precedence of [OR] and implicit [AND]

Is it possible to check for X and (Y or Z) with mod_rewrite? I have the following rule to serve dummy.png to guests of my website, who don't have 2 cookies id and auth set (I set those in my custom ...
3
votes
1answer
77 views

Operator precedence in `copy` implementation example

I read a few lines of code here where it looks to me like there should be some parentheses. template<class InputIterator, class OutputIterator> OutputIterator copy ( InputIterator first, ...
3
votes
2answers
234 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 ?
3
votes
2answers
87 views

Perl5 = (equals) operator precedence

$a,$b,$c = 1,2,3; print "$a, $b, $c\n"; returns , , 1 So does = (equals) take higher precedence than the tuple construction - doing this? $a,$b,($c=1),2,3;
3
votes
1answer
206 views

using precedence parser not only for expressions?

Is it possible to use some kind of operator-precedence parser or shunting-yard algorithm for simple programming language? For example, if this language have only expressions, functions and ...
3
votes
2answers
824 views

Pointer Arithmetic: ++*ptr or *ptr++?

I am learning C language and quite confused the differences between ++*ptr and *ptr++. for example: int x = 19; int *ptr = &x; I know ++*ptr and *ptr++ produce different results but I am not ...
3
votes
4answers
197 views

Operator precedence

Consider this C# class: class Node { public Node Next; } And consider these 2 cases: Node A = new Node(); Node B = A; B=(B.Next = new Node()); and Node A = ...
3
votes
3answers
132 views

Question about precedence + repetition modifer

Please could you explain this apparently inconsistent behaviour to me: use strict; my @a; print "a" x 2; # this prints: aa @a = "a" x 2; print @a; # this prints: aa print ("a") x 2; # this prints: ...
3
votes
3answers
258 views

Operator precedence in C Definitions

Wikipedia claims that the [] operator precedes the * operator in evaluation. Then, why does the following statement: char *a[3]; declare an array of 3 character pointers, rather than a pointer to ...
3
votes
2answers
166 views

Bitwise operator predence

A gotcha I've run into a few times in C-like languages is this: original | included & ~excluded // BAD Due to precedence, this parses as: original | (included & ~excluded) // ...

1 2 3