Tagged Questions
For issues relating to defining or performing post increment operations.
81
votes
13answers
5k views
What is x after “x = x++”? [closed]
Possible Duplicate:
Is there a difference between x++ and ++x in java?
Why does this go into an infinite loop?
What happens (behind the curtains) when this is executed?
int x = 7;
x = ...
77
votes
15answers
13k views
Is there a performance difference between i++ and ++i in C?
Is there a performance difference between i++ and ++i if the resulting value is not used?
69
votes
13answers
7k views
Is there a performance difference between i++ and ++i in C++?
We looked at this answer for C in this question:
http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
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 ...
31
votes
6answers
515 views
C# Pre- & Post Increment confusions
I am a little confused about how the C# compiler handles pre- and post increments and decrements...
When i code the following:
int x = 4;
x = x++ + ++x;
x will have the value 10 afterwards. I ...
23
votes
6answers
914 views
Strange Increment Behaviour in C#
Note: Please note that the code below is essentially non-sense, and just for illustration purposes.
Based on the fact that the right-hand side of an assignment must always be evaluated before it's ...
22
votes
16answers
10k views
Difference between i++ and ++i in a loop?
Is there a difference in ++i and i++ in a for loop? Is it simply a syntax thing?
17
votes
8answers
3k views
Why can't I do ++i++ in C-like languages?
Half jokingly half serious: why can't I do ++i++ in C-like languages, specifically in C#?
I'd expect it to increment the value, use that in my expression, then increment again.
12
votes
10answers
562 views
C programming ++ operator
Why does this code always produce x=2?
unsigned int x = 0;
x++ || x++ || x++ || x++ || ........;
printf("%d\n",x);
9
votes
1answer
117 views
Will the inefficiency of the postfix ++/— operators be optimised away for STL iterators?
I know that the postfix versions of the increment/decrement operators will generally be optimised by the compiler for built-in types (i.e. no copy will be made), but is this the case for iterators?
...
8
votes
2answers
224 views
is `x— > 0 && array[x]` well defined behavior in c++?
can i use x on both sides of a boolean expression when I post-increment it on the left side?
the line in question is:
if(x-- > 0 && array[x]) { /* … use x … */ }
is that defined ...
8
votes
5answers
367 views
How is *it++ valid for output iterators?
In example code, I often see code such as *it++ for output iterators. The expression *it++ makes a copy of it, increments it, and then returns the copy which is finally dereferenced. As I understand ...
8
votes
26answers
1k views
Why doesn't changing the pre to the post increment at the iteration part of a for loop make a difference?
Why does this
int x = 2;
for (int y =2; y>0;y--){
System.out.println(x + " "+ y + " ");
x++;
}
prints the same as this?
int x = 2;
for (int y =2; y>0;--y){
...
7
votes
5answers
538 views
Is the behavior of return x++; defined?
If I have for example a class with instance method and variables
class Foo
{
...
int x;
int bar() { return x++; }
};
Is the behavior of returning a post-incremented variable defined?
6
votes
4answers
398 views
Post-Increment Operator: Unexpected Behavior [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
My code is as follows:
#include <stdio.h>
int main()
{
int x = 10, y = 0;
...
6
votes
3answers
621 views
post increment operator java
I can't make heads or tails of the following code from "java puzzlers" by joshua bloch.
public class Test22{
public static void main(String args[]){
int j=0;
for(int i=0;i<100;i++){
...
5
votes
3answers
158 views
Is ++ the same as += 1 for pointers?
I'd like to refactor some old C code of mine, and I was curious if I can replace all ptr++ with ptr += 1 where ptris some pointer, without changing any behavior. Here's an example of what I mean, from ...
5
votes
3answers
143 views
Closure Compiler - can a++ >= 3 become ++a > 3?
I admit that I asked a question about why Closure Compiler does not shorten certain code which looks shortenable at first sight a few days ago already, but that reason is not applicable in this case ...
5
votes
6answers
1k views
Post Increment and Pre Increment concept?
I dont understand the concept of postfix and prefix increment or decrement. Can any one give a better Explanation?
5
votes
1answer
874 views
increment operator/ iterator implementation
I am trying to figure out a couple of things here:
how do i write a increment operator for a node class that has pointer to next node.
how to implement iterators for a class like below?
Thank you ...
4
votes
4answers
215 views
C# difference between arr[0]++ and ++arr[0]
In C#, is there a difference between the code (all in one statement, not part of a larger one) arr[0]++; and ++arr[0];
I fully understand, that in C / C++ / Objective-C, that this would not do the ...
4
votes
8answers
3k views
Incrementing in C++ - When to use x++ or ++x?
I'm currently learning C++ and I've learned about the incrementation a while ago.
I know that you can use "++x" to make the incrementation before and "x++" to do it after.
Still, I really don't know ...
3
votes
3answers
59 views
Precedence of pre- and post-increment operators [closed]
Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
Which has the higher precedence, postfix operators or prefix operators? For ...
3
votes
4answers
261 views
switch statement and incrementation operator
I wrote the following code:
int i = 0;
switch(i++)
{
case 0:
cout << 0;
case 1:
cout << 1;
}
cout << "\n" << i;
The output of the code was like ...
3
votes
3answers
307 views
When dereferencing and post-incrementing a pointer to function pointer, what happens first?
Given this code:
typedef void (*Thunk)();
Thunk* gFP;
void foo(){ printf("Foo "); *gFP(); };
void bar(){ printf("Bar ");
Thunk Codex[] = { foo, bar };
gFP = Codex;
(*gFP++)();
Does the ...
3
votes
5answers
199 views
How does this code work?
I am looking at c++ for dummies and found this code
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int nextStudentId = 1000; // first legal Student ...
3
votes
2answers
161 views
Follow-up. Is return reference to x++ defined?
I recently asked the question http://stackoverflow.com/questions/2380803/is-the-behavior-of-return-x-defined
The result was about what I expected, but got me thinking about a similar situation.
If I ...
2
votes
2answers
39 views
Sybase add incrementing counter to a select statement
It seems that a similar question has been asked an solutions exist for other DB products (especially MS-SQL) but they don't work for sybase so I'm asking this question.
I have a simple select ...
2
votes
2answers
76 views
C++ post-increment operator overload in iterators (compiling with -Wall -Werror)
I'm currently creating my own iterator for a b-tree, and I'm stuck on how to implement the post-increment operator without the compiler complaining.
The error message is as follows, and is expected ...
2
votes
7answers
487 views
C/C++ Post-increment by more than one
I'm reading bytes from a buffer. But sometimes what I'm reading is a word or longer.
// assume buffer is of type unsigned char *
read_ptr(buffer+(position++))
That's fine but how can I ...
1
vote
3answers
71 views
Pre / Post Increment Explanation
Please be easy on me and don't shoot me as I'm still newbie.
I'm totally confused and can't for life figure out why when I run this code:
int y = 9;
cout << "++y = " << ++y << ...
1
vote
4answers
98 views
Unexpected result when looping chars in C++
I'm using the book "Programming Principles and Practice using C++" to learn programming and one of the exercises is looping through the characters a-z using a while-loop.
Now, I have programmed with ...
1
vote
4answers
198 views
C: Pointer confusion
I understand this is part of the basic stuff, but i am stuck :-(
Can someone please help me?
Program 1:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a=1,b=2,c;
c=(a+b)++;
...
1
vote
4answers
236 views
When does postincrement i++ get executed? [closed]
Possible Duplicate:
Undefined Behavior and Sequence Points
In C++ on a machine code level, when does the postincrement++ operator get executed?
The precedence table indicates that ...
1
vote
4answers
182 views
equivalent expression for a[j++] = ++i without using pre or post increment operators
So I am pondering this question (this is a homework/exam review problem):
Write down an equivalent expression for a[j++] = ++i; without using pre/post increment operators. If no such expression can ...
1
vote
4answers
424 views
implementing a C++ postfix increment operator
I compiled the following example:
#include <iostream>
#include <iterator>
using namespace std;
class myiterator : public iterator<input_iterator_tag, int>
{
int* p;
public:
...
1
vote
10answers
451 views
++i or i++ in for loops? [closed]
Possible Duplicate:
Is there a performance difference between i++ and ++i in C++?
hi I was wondering in a normal for loop why eclipse and some other people code writing ++i is there a ...
1
vote
1answer
492 views
MIPS assembly - Label value modification
Is it possible in MIPS to change during execution the value of a label, or to create a label with certain value?
I ask this because when using the instruction lw $a0, label($s0) i want to increment ...
1
vote
1answer
122 views
Does implementation of ++i vs. i++ vary from language to language?
I recently read:
"The expressions (++i) and (i++) have values and side effects.
The side effect is that the value in i is increased by 1.
The value of (i++) is the value before the increment and
the ...
1
vote
2answers
557 views
whether a language needs preIncrement (++x) and postIncrement (x++)
i have never seen the usecase for preincrement and postincrement in actual code.
The only place i see them most often are puzzles.
My opinion
is, it introduces more confusion rather than being ...
1
vote
5answers
3k views
explain working of post and pre increment operator in Java
can you explain me the output of this in case of Java
int a=5,i;
i=++a + ++a + a++;
i=a++ + ++a + ++a;
a=++a + ++a + a++;
System.out.println(a);
System.out.println(i);
The output is 20 ...
1
vote
5answers
271 views
Question about post-increment operator
Why does the following code
int i = 1;
System.out.print(i += i++);
System.out.print(i);
output 2 two times instead of 3 for the 2nd print?
Could somebody please shed some light on it?
...
1
vote
23answers
4k views
What is more efficient i++ or ++i? [closed]
Exact Duplicate: Is there a performance difference between i++ and ++i in C++?
Exact Duplicate: Why should I use ++i?
Exact Duplicate: Difference between i++ and ++i in a loop?
What is more ...
0
votes
5answers
198 views
Multiple increment operators in single statement [closed]
Possible Duplicate:
Undefined Behavior and Sequence Points
Pleae explain the behaviour of following statements
int b=3;
cout<<b++*++b<<endl;
How will it be calculated?
0
votes
2answers
97 views
Overloading post increment operator results in argument valued at 0 [closed]
Possible Duplicate:
Is it allowed to name the parameter in postfix operator ++?
I created an object to hold a list of objects that maintains the current position internally, so I thought ...
0
votes
7answers
365 views
Operator Precedence.. () and ++
Salute..
I have an unusual problem.
Here in this table in MSDN library we can see that precedence of () is higher than ++ (Pre-increment) .
but when I run this code, it seems that precedence of ...
0
votes
1answer
255 views
Post Increment with respect to Sequence Points
When does the post increment operator affect the increment? I have come across two opinions:
1) From http://gd.tuwien.ac.at/languages/c/programming-bbrown/c_015.htm:
POST means do the operation ...
0
votes
1answer
134 views
Does postfix increment perform increment not on returned value?
Again, a silly question.
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
int i = 0;
i = i++;
cout<<i;
return 0;
}
I get 1 printed as a result of ...
0
votes
5answers
137 views
is there a reason to use ++$i in for loop?
i have following code for loop
for ($i=0; $i<=(count($subusers)-1); ++$i) {
is there a reason to use ++$i instead of $i++ if latter doing same thing?
-1
votes
3answers
103 views
Post increment in operator overloading in c++
This is my post increment operator overloading declaration.
loc loc::operator++(int x)
{
loc tmp=*this;
longitude++;
latitude++;
retrun tmp;
}
My class constructor
loc(int lg, int ...