In any programming language, there are well-defined rules stating the order in which expressions are evaluated.

learn more… | top users | synonyms (1)

3
votes
1answer
70 views

Is an if statement guaranteed to not be evaluated more than necessary?

Given two conditions with an && connection. I know that the order of evaluation is from left to right. But if the first condition resolves to false, it the second condition guaranteed to not ...
1
vote
3answers
49 views

Order of calls and side effects

Consider an operation like this : int a = f1(mystream)*f2(mystream)+f3(mystream); Where f1, f2, f3 are of the following form : int f(std::istream&) or int f(std::ostream&) Do I have ...
1
vote
1answer
439 views

Output of multiple post and pre increments in one statement

I'm new to C language so plz sum1 help me out. A C code written int i=3; printf("%d",++i + ++i); Complier gvs O/P =9. How? Thanx in advance
40
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 ...
117
votes
9answers
15k views

Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)

int main(int argc, char ** argv) { int i = 0; i = i++ + ++i; printf("%d\n", i); // 3 i = 1; i = (i++); printf("%d\n", i); // 2 Should be 1, no ? volatile int u = 0; u = u++ ...
2
votes
2answers
66 views

Is indexing a new map element and having something that reads it assigned to it undefined behaviour, or just unspecified?

After answering this question, there was a long discussion over whether the code in question was undefined behaviour or not. Here's the code: std::map<string, size_t> word_count; ...
18
votes
2answers
297 views

Move semantics & argument evaluation order

Considering the following: std::string make_what_string( const std::string &id ); struct basic_foo { basic_foo( std::string message, std::string id ); }; struct foo : public basic_foo { ...
4
votes
2answers
93 views

Is it possible to use normal order evaluation in F#

In Scala you can choose between applicative or normal order evaluation, see “Scala call-by-name (=>) vs call-by-type” for an example. def byName(a: => Unit) = { for (i <- 0 until 10) ...
4
votes
1answer
276 views

What is the order of evaluation in F#?

I was reading this and now wonder: what is the evaluation order in F#? Obviously ; makes effects happen in a sequential fashion. But what about things like function calls or applications, order of ...
1
vote
2answers
84 views

Force a static constant inside a function to be evaluated at starting time?

Consider the following program : LWS #include <iostream> #include <chrono> void test() { static const std::chrono::high_resolution_clock::time_point marker = ...
3
votes
4answers
114 views

Which is faster: “null == myObject” or “myObject == null”? [duplicate]

In both Java and .Net, I've heard that using null first if (null == myObject) is more performant than using the object first if (myObject == null). While I think this is probably true, I'm not certain ...
3
votes
5answers
853 views

C/C++ Math Order of Operation

So I know that C++ has an Operator Precedence and that int x = ++i + i++; is undefined because pre++ and post++ are at the same level and thus there is no way to tell which one will get calculated ...
2
votes
2answers
116 views

C - Order of Evaluation for equation

I have done a ton of research as to how the order of evaluation goes - but cannot figure out how it would go for this equation: z = !x + y * z / 4 % 2 - 1 My best guess is (from left to right): z ...
2
votes
1answer
53 views

Boolean evaluation in reverse

Why is the boolean evaluation done in reverse in the following PHP code, as opposed to putting "false" at the end? while (false !== ($obj = readdir($dh))) { // do something } (from one of the ...
3
votes
2answers
108 views

Tracing lambda expression evaluation

I am having trouble with some tricky-looking lambda expressions in Scheme, and I would like to see how they are being evaluated by the interpreter. I would like the Scheme interpreter to print all ...
0
votes
5answers
41 views

Variable reassignment in OOP languages

I was playing around with some variables today to get a better feel for them and I came across something that looks peculiar to me. Here's an example in JavaScript var foo = "Sethen"; var bar = foo; ...
5
votes
1answer
189 views

Order of execution in SQL Server variable assignment using SELECT

Given the following example: declare @i int select @i = 1, @i = 2 select @i Will @i always be 2? This is about the most trivial example I can think of, but I am considering using this for swapping ...
0
votes
2answers
87 views

defining an undefined global variable inside a function

This is messy stuff (not my code but I'm stuck to it). A function depends on a globally defined variable. function variableIssues(){ alert(someGlobalString); // alerts "foo" } Sometimes this ...
2
votes
5answers
266 views

order of evaluation of function parameters

What will be printed as the result of the operation below: x=5; printf("%d,%d,%d\n",x,x<<2,x>>2); Answer: 5,20,1 I thought order is undefined yet I found above as interview question ...
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: ...
2
votes
8answers
898 views

Understanding evaluation of expressions containing '++' and '->' operators in C

Consider this example: struct { int num; } s, *ps; s.num = 0; ps = &s; ++ps->num; printf("%d", s.num); /* Prints 1 */ It prints 1. So I understand that it is because according to ...
4
votes
3answers
59 views

About Python's inner to outer evaluation order in generator expressions

When iterating over the following generator expression, fun(i) for i in mylist if i not in setA.union(setB) is the setA.union method called in each iteration, or only once?
0
votes
0answers
70 views

Non-Deterministic Evaluation in C [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Can anyone give me a few examples of non-deterministic evaluations in C? For instance, I ...
5
votes
1answer
156 views

Order of evaluation of elements in list-initialization

In the other topic, @Dietmar gave this solution: template <typename... T> std::tuple<T...> parse(std::istream& in) { return std::tuple<T...>{ T(in)... }; } stating that, ...
2
votes
1answer
61 views

An expression evaluates to TRUE when it couldn't possibly be TRUE, could it?

I have the following check to see if an element should be considered "hovered over" or not. I'm very confused because I'm seeing elements set to state === 'hover' when they should not be. The alert ...
39
votes
13answers
24k views

Post-increment and pre-increment in 'for' loop

I want to know why there is no difference in way post and pre increment in 'for' loops are treated. Here is the code for(i=0;i<5;i++) { printf("%d",i); } for(i=0;i<5;++i) { ...
0
votes
3answers
90 views

Order of evaluation in Python is not clear [duplicate]

Possible Duplicate: Multiple assignment in Python As we have learnt right since we started with C that on a computer while working in one thread, all operations occur one by one. I have a ...
6
votes
7answers
525 views

Function passing arguments in reverse

Here is my function: void abc(char *def, unsigned int w, unsigned int x, unsigned int y, unsigned int z) { printf("val 1 : %d\n", w); printf("val 2 : %d\n", x); printf("val 3 : %d\n", y); ...
6
votes
6answers
316 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 ...
2
votes
1answer
81 views

Which compiler evaluate left most parameter first

I know the order that function parameters are evaluated is unspecified in C++, see below, // The simple obvious one. callFunc(getA(),getB()); Can be equivalent to this: int a = getA(); int b = ...
8
votes
2answers
103 views

How should Scala default arguments to refer to a previous positional argument?

Scala-lang reference 5.5.1 and 6.6.1 gave me the impression that a default parameter would be able to refer to a previously evaluated one: class Test(val first: String, val second: String = first) ...
1
vote
3answers
60 views

Would unary negate operator come before the function call?

I don't have a compiler handy but this is itching my curiosity. If I have code like this: float a = 1; float b = 2; -a.add(b); Would it be run as: add(-a, b); or -add(a, b);
0
votes
4answers
417 views

Problem with operator precedence

The O/p comes out to be x=2,y=1,z=1 which doesnt agree with the operator precedence. I was running this on Turbo c++ compiler: void main() { int x,y,z,q; x=y=z=1; q=++x || ++y && ...
2
votes
3answers
95 views

Unsure of how to get the right evaluation order

I'm not sure what the difference between these two pieces of code is (with respect to x), but the first one completes: $ foldr (\x y -> if x == 4 then x else x + y) 0 [1,2 .. ] 10 and the second ...
4
votes
1answer
85 views

Is the order of assingment in a list of initialized variables undefined? [duplicate]

Possible Duplicate: Is the comma in a variable list a sequence point? If I have the following code does the comma act as a normal sequence point, or is the behaviour undefined? int i = 1, ...
5
votes
2answers
215 views

Why is the order of evaluation for function parameters unspecified in c++?

The standard doesn't specify the order of evaluation of arguments with this line: The order of evaluation of arguments is unspecified. What does Better code can be generated in the absence ...
0
votes
2answers
113 views

Order of evaluation [duplicate]

Possible Duplicate: && and || operators I've the following small program. #include<stdio.h> int main(){ int i=-3, j=2, k=0, m; ...
6
votes
3answers
112 views

Evaluation order of named parameters [duplicate]

Possible Duplicate: Are parameters evaluated in order when passed into a method? Say I have void foo (int x, int y) and call it by: foo(y: genNum(), x: genNum()) Does C# guarantee the ...
4
votes
2answers
198 views

Operator precedence and Associativity in C/C++

Please note, that this has nothing to do with Operator Precedence.. () and ++ , Undefined Behavior and Sequence Points , Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, ...
0
votes
0answers
55 views

C - Undefined behaviour or proper output [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) I've read about these sort of statements before, but this one is strange. For this ...
4
votes
4answers
959 views

How do I make a Lazy List in an Eager Language?

I wanted to make a lazy list in Scheme. This is what I have so far. ;; Constructor for Pairs (define (cons-stream a b) (cons a (λ() b))) ;; Selectors (define (car-stream a-stream) (car ...
5
votes
2answers
260 views

Writing String evaluation function

I'm trying to write a String evaluation function i.e. evaluate("4 + 1") ; // returns 5 evaluate("4 + 1 + 3") ; // returns 8 evaluate("4 + 1 * 3") ; // returns 7 (not 15) The operators are + - / ...
2
votes
2answers
168 views

How can I understand nested ?: operators in PHP? [duplicate]

Possible Duplicate: Problem with PHP ternary operator I was reading up a bit on PHP in this article, and I stopped for a while to consider one of his gripes. I can't figure out how on earth ...
0
votes
1answer
104 views

Force evaluation of anonymous type query before storing in session

I need to bring back several user specific data sets to bind to drop down lists for a search page that is frequently (re)loaded (potentially not being able to utilize postback data). I want to hit the ...
5
votes
1answer
113 views

Is the behavior of i = post_increment_i() specified, unspecified, or undefined?

Consider the following C program: int i = 0; int post_increment_i() { return i++; } int main() { i = post_increment_i(); return i; } With respect to the 2011 version of the C standard ...
5
votes
1answer
159 views

Order of evaluation in emacs lisp

I am trying to write some of my first code in emacs lisp and I can't understand the following behaviour (defun sq (x) (* x x)) (member 9 '(1 2 3 4 (sq 3))) This evaluates to nil but the value I ...
8
votes
3answers
197 views

How does expression evaluation order differ between C++ and Java?

I've had my brain wrinkled from trying to understand the examples on this page: http://answers.yahoo.com/question/index?qid=20091103170907AAxXYG9 More specifically this code: int j = 4; cout ...
4
votes
2answers
8k views

using multiple criteria in subset function and logical operators in R

If I want to select a subset of data in R, I can use the subset function. I wanted to base an analysis on data that that was matching one of a few criteria, e.g. that a certain variable was either 1, ...
16
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 ...
8
votes
11answers
1k views

why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”

Why ++x || ++y && ++z calculate ++x firstly? However,Operator && is higher than ||?

1 2 3