I could use some help understanding operators. ++, --, +=, -=, *=, /=, and %=. There's something about them that I'm just not getting. I would really appreciate your assistance!
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
I could use some help understanding operators. ++, --, +=, -=, *=, /=, and %=. There's something about them that I'm just not getting. I would really appreciate your assistance!
those operators are used just immediate to any variables.
like
similarly all functions as.k++; //k=k+1 but post increment ++k; //pre increment the value of k
Please give some details on your problem. Take a look at the tutorial:something about them that I'm just not getting.
Operators (The Java™ Tutorials > Learning the Java Language > Language Basics)
If you don't understand my answer, don't ignore it, ask a question.
Thanks for the help. Here is an excerpt from the book I'm reading about operators and which doesn't seem to be explained by the Oracle Java tutorial. This is where my confusion comes from:
-------------
int x = 10;
int y = 20;
What value is z assigned? The answer is 220. The third assignment increments
x to 11 and decrements y to 19, but in computing the value of z, it uses the new
value of x (++x) times the old value of y (y– –), which is 11 times 20, or 220.
--------------------
I understand that ++x equals 10+1, which is 11. But I don't understand how --y equals 20. Does --y mean "y minus a minus" or y subtracting (or minus) a minus? That's what is confusing me.
++ means increment (add 1).
-- means decrement (subtract 1).
There's no mathematical intuition or basis for why this is, this is just some idea that the designers decided a long time ago was nifty.
That's what I thought. But how is ++y different from y++? And --y from y--? I ask because in the example above, where int y=20, y-- should mean 20-1 = 19. But the book has the answer as being 20.
Thanks for answering my newbie questions.
Google postfix operator for lots of discussions about how the operators work.
If you don't understand my answer, don't ignore it, ask a question.
Thanks. I was entering Java and operators, but it never occurred to me to try just try that. Google is giving me a lot of C++ pages, so I'll look at those. Nice indeed! Thanks!