473,505 Members | 15,381 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

meaning of j++

i have just started to learn C++ from Bruce Eckel's book "Thinking in
C++ 2/e" & i am trying to understand the meaning of "j++". ++j is
pretty clear to me. i am using "g++" on my Debian Sarge.

here is the problem:

i = j = k = l = 0

++i ---i = 0 ;; OK, fine

j++ -j-- = 1 ;; WHAT?, why not 0

k++ -k++ = 1 ;; WHAT?, why not 2.

l-- = -l-- = -1 ;; why not -2
no i am not talking about efficiency/optimisation. i am talking about
the answers i got.

I searched archives but all i got is optimisations regarding the use of
++j & j++ but not regarding meaning of these. does anybody have any
idea? Bruce did not explain this behaviour in his book (except for a
single sentence)

thanks

"arnuld"

Aug 3 '06 #1
11 9500
arnuld wrote :
j++ -j-- = 1 ;; WHAT?, why not 0
because j-- returns the old value, not the new one.
>
k++ -k++ = 1 ;; WHAT?, why not 2.
because k++ returns the old value, not the new one.

Aug 3 '06 #2
arnuld wrote:
i have just started to learn C++ from Bruce Eckel's book "Thinking in
C++ 2/e" & i am trying to understand the meaning of "j++". ++j is
pretty clear to me. i am using "g++" on my Debian Sarge.

here is the problem:

i = j = k = l = 0

++i ---i = 0 ;; OK, fine

j++ -j-- = 1 ;; WHAT?, why not 0

k++ -k++ = 1 ;; WHAT?, why not 2.

l-- = -l-- = -1 ;; why not -2
We're in a C++ language newsgroup. The text above is not C++. Care
to explain what it is you mean by all those valid C++ tokens mixed up
in a strange order?
[..]
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Aug 3 '06 #3

arnuld wrote:
i have just started to learn C++ from Bruce Eckel's book "Thinking in
C++ 2/e" & i am trying to understand the meaning of "j++". ++j is
pretty clear to me. i am using "g++" on my Debian Sarge.

here is the problem:

i = j = k = l = 0

++i ---i = 0 ;; OK, fine

j++ -j-- = 1 ;; WHAT?, why not 0

k++ -k++ = 1 ;; WHAT?, why not 2.

l-- = -l-- = -1 ;; why not -2
no i am not talking about efficiency/optimisation. i am talking about
the answers i got.

I searched archives but all i got is optimisations regarding the use of
++j & j++ but not regarding meaning of these. does anybody have any
idea? Bruce did not explain this behaviour in his book (except for a
single sentence)

thanks

"arnuld"
This can be confusing, but is really easy!

The post increment operator like j++ maps to a funtion like this:

int operator++()
{
int tmp = j
j += 1;
return tmp;

}

And the pre incremend operator maps to a function like this:
int operator++(int)
{
j += 1;
return j;
}

If the function names confuses you don't pay attention to them, but see
what they do.

So j++ return the old value of j , but increases j by 1, and ++j
increases first and then return the value of j.
-Thomas

Aug 3 '06 #4
arnuld schrieb:
i have just started to learn C++ from Bruce Eckel's book "Thinking in
C++ 2/e" & i am trying to understand the meaning of "j++". ++j is
pretty clear to me. i am using "g++" on my Debian Sarge.

here is the problem:

i = j = k = l = 0

++i ---i = 0 ;; OK, fine

j++ -j-- = 1 ;; WHAT?, why not 0

k++ -k++ = 1 ;; WHAT?, why not 2.

l-- = -l-- = -1 ;; why not -2
++j and j++ both do the same thing: They increment the variable j.

The difference is the _value_ of the expressions:

++j is called prefix-increment, it increments j and returns the
incremented value. So ++j equals the value of j after the increment
operation.

j-- is called postfix-increment. It increments j but its value is that
of j before the increment.

Example:

int j, a, b, c;

j = 0;
a = ++j; // a and j are 1
b = j++; // b is 1, but j is 2
c = j; // c is 2

--
Thomas
Aug 3 '06 #5
Thomas wrote:
arnuld wrote:
>i have just started to learn C++ from Bruce Eckel's book "Thinking in
C++ 2/e" & i am trying to understand the meaning of "j++". ++j is
pretty clear to me. i am using "g++" on my Debian Sarge.

here is the problem:

i = j = k = l = 0

++i ---i = 0 ;; OK, fine

j++ -j-- = 1 ;; WHAT?, why not 0

k++ -k++ = 1 ;; WHAT?, why not 2.

l-- = -l-- = -1 ;; why not -2
no i am not talking about efficiency/optimisation. i am talking about
the answers i got.

I searched archives but all i got is optimisations regarding the use
of ++j & j++ but not regarding meaning of these. does anybody have
any idea? Bruce did not explain this behaviour in his book (except
for a single sentence)

thanks

"arnuld"

This can be confusing, but is really easy!

The post increment operator like j++ maps to a funtion like this:

int operator++()
You meant

int int::operator++(int)

didn't you?
{
int tmp = j
;
j += 1;
return tmp;

}

And the pre incremend operator maps to a function like this:
int operator++(int)
You meant

int& int::operator++()

didn't you?
{
j += 1;
return j;
}

If the function names confuses you don't pay attention to them, but
see what they do.

So j++ return the old value of j , but increases j by 1, and ++j
increases first and then return the value of j.
Actually ++j returns _a reference_ to the old object 'j' with the new value.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Aug 3 '06 #6
2 Thomas-es are really great :-)

(i mean Thomas & Thomas J. Gritzen)

both explained in a very-easy way & i understood.

thanks.

"arnuld"

Aug 3 '06 #7
Victor Bazarov wrote:
We're in a C++ language newsgroup. The text above is not C++. Care
to explain what it is you mean by all those valid C++ tokens mixed up
in a strange order?
i thought of putting the entire programme but that could clutter the
post, that is why i used arrows.

BUT Victor, you are here from a long-time, so you know better. if you
say "always in the form of a programme" then i will do so. what do you
say?

"arnuld"

Aug 3 '06 #8
arnuld wrote:
Victor Bazarov wrote:
>We're in a C++ language newsgroup. The text above is not C++. Care
to explain what it is you mean by all those valid C++ tokens mixed up
in a strange order?

i thought of putting the entire programme but that could clutter the
post, that is why i used arrows.

BUT Victor, you are here from a long-time, so you know better. if you
say "always in the form of a programme" then i will do so. what do
you say?
We should strive to use two languages here: C++ and English. When I see

j++ -j++ = 1

what should I think? Yes, I've been here a while, so I can probably
guess that you meant

j++;
cout << j++; // outputs 1

but what somebody without enough experience should make of it? When you
post, you shouldn't just think that your questions are read (and well
understood) by somebody who is experienced. You should think of somebody
with less experience than yourself and make sure that both your question
and the answers are clear.

BTW, was it so difficult to write

j++, cout << j++; // outputs 1 -- some comment

instead of

j++ -j++ = 1 ;; some comment

???

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Aug 3 '06 #9
Victor Bazarov wrote:

We should strive to use two languages here: C++ and English.
hey, hey making fun of me by saying " and English" i like it :-)
When I see

j++ -j++ = 1

what should I think? Yes, I've been here a while, so I can probably
guess that you meant

j++;
cout << j++; // outputs 1
i meant:

int j = 0;
cout << j++ << endl;
cout << j++ << endl;

but what somebody without enough experience should make of it? When you
post, you shouldn't just think that your questions are read (and well
understood) by somebody who is experienced. You should think of somebody
with less experience than yourself and make sure that both your question
and the answers are clear.
whoopy.....! I thought *I* was least experienced. WOW i am wrong.
BTW, was it so difficult to write

j++, cout << j++; // outputs 1 -- some comment

instead of

j++ -j++ = 1 ;; some comment
nope, i did write that. my mistake :-)
V
:-)

Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask

what do you mean by "top-posted replies". asking since i dont know.

"arnuld"

Aug 3 '06 #10
This is a top-posted reply

V

arnuld wrote:
Victor Bazarov wrote:
[..]
>
what do you mean by "top-posted replies". asking since i dont know.

"arnuld"

Aug 3 '06 #11
arnuld posted:
i am trying to understand the meaning of "j++".

The following two expressions perform the same action -- they increment the
object "j":

++j

j++

The difference between them only becomes apparent though if you use the
value of the expression:

(1) int i = ++j;

(2) int i = j++;

In the first example, "i" is set to the value which "j" has AFTER the
increment has been performed.

In the second example, "i" is set to the value which "j" has BEFORE the
increment has been performed.

An easy way to remember is to read from left to right. If we read "++j", we
see that the incrementation comes BEFORE. If we read "j++", we can see that
the incrementation comes AFTER.

++j is called the "pre-increment operator".

j++ is called the "post-increment operator".

Note however that these terms are ambiguous, as it isn't clear whether pre
means "before as you read from left-to-right", or "before as in: the value
is incremented before the expression is fully evaluated".

If you don't use the value of the expression, I would suggest you use:

++j

As it is consistent with the behaviour of other operators, such as:

j += 5;

j *= 7;

--

Frederick Gotham
Aug 3 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
6072
by: Richard Cornford | last post by:
I am interested in hearing opinions on the semantic meaning of FORM (elements) in HTML. I have to start of apologising because this question arose in a context that is not applicable to the...
7
27172
by: John Baker | last post by:
HI: I see the term "Me!" in a lot of Access statements, bit don't quite know what it means. In the same contexts as wondering what the meaning if "is" is, I wonder what the meaning of "Me!" is....
4
3674
by: RF Emmerink | last post by:
Hi, A simple question: What is the meaning of: variable >> 1 Kind regards,
388
21406
by: maniac | last post by:
Hey guys, I'm new here, just a simple question. I'm learning to Program in C, and I was recommended a book called, "Mastering C Pointers", just asking if any of you have read it, and if it's...
19
3821
by: ccwork | last post by:
Hi all, I am reading "C: A Reference Manual" 4th ed and I get lost for the "extern". It says that global object without specifying the storage-class specifier will have "extern" as the default...
87
5023
by: Robert Seacord | last post by:
The SEI has published CMU/SEI-2006-TR-006 "Specifications for Managed Strings" and released a "proof-of-concept" implementation of the managed string library. The specification, source code for...
232
13065
by: robert maas, see http://tinyurl.com/uh3t | last post by:
I'm working on examples of programming in several languages, all (except PHP) running under CGI so that I can show both the source files and the actually running of the examples online. The first...
5
1604
by: =?Utf-8?B?Sm9seW5pY2U=?= | last post by:
Hi everyone, I am learning c# and i don´t understand a piece of code , can anyone explain the meaning of this code please. public class vector { public double? R = null; //I suppose this...
43
17165
by: emyl | last post by:
Hi all, here's an elementary question. Assume I have declared two variables, char *a, **b; I can then give a value to a like a="hello world";
1
2109
oranoos3000
by: oranoos3000 | last post by:
hi would you please help me? i dont know correct meaning of cash webpage? meaning of cash web page is that pages is saved on web server and for next time that is requeste the same page server...
0
7216
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7098
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7303
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7367
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5613
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5028
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3187
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
754
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
407
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.