Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within OCPJP
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework
this week in the
Java in General
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
Programmer Certification (OCPJP)
Post Operator
Akhil Maharaj
Ranch Hand
Posts: 63
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi ,
In the following code how come the result is 7 ?
static public void main(String...arg) { int i=1; int result = 5+i++%4*i; //int result = 7%8; System.out.println(result); }
Kelvin Chenhao Lim
Ranch Hand
Posts: 513
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
"i++" evaluates to the value of i before the increment. So here's how your expression gets evaluated step by step (parentheses added for clarity):
5 + (((i++) % 4) * i) (where i=1) ==> 5 + ((1 % 4) * i) (where i=2) ==> 5 + (1 * i) (where i=2) ==> 5 + (1 * 2) (where i=2) ==> 5 + 2 (where i=2) ==> 7
[ November 02, 2007: Message edited by: Kelvin Lim ]
SCJP 5.0
Akhil Maharaj
Ranch Hand
Posts: 63
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Thanks
Milton Ochoa
Ranch Hand
Posts: 336
I like...
posted 16 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Monster respose.
Thank you
[ February 26, 2008: Message edited by: Milton Ochoa ]
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
is my code right?
How do return double integer array from a method?
Serious Conversion Problem - Please HELP
Simple Math Expression
about ++.
More...