Tagged Questions
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++?
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 ...
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?
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
873 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
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
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
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
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
485 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
235 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
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
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
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 ...
-1
votes
3answers
102 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 ...