| Author |
Can you explain me how the static works in this example?
|
shoeb sayyed
Ranch Hand
Joined: Mar 14, 2010
Posts: 48
|
|
|
|
Thanks,
Shoeb
|
 |
Vasiq Molvizadah
Ranch Hand
Joined: Dec 24, 2009
Posts: 66
|
|
The reason why you are getting the value of j as 4 is because ....in the following line :
you used an Conditional OR Operator ..this operator exhibit "short-circuiting" behavior, which means that the second operand is evaluated only if needed. In this case the first condition is i< 10 which is true ...so it won't check the second operand.....and that's the reason why you are getting the value of j as 4....
Hope this is the answer to your question...
|
Human Knowledge Belongs to the World.
- Vasiq Mz
|
 |
Devaka Cooray
Saloon Keeper
Joined: Jul 29, 2008
Posts: 2595
|
|
Howdy shoeb, welcome to JavaRanch
Please UseCodeTags when you post a source code in future. It's unnecessarily hard to read the code otherwise.
For now, I've added the code tags on your post for you.
|
Author of ExamLab - the free mock exam kit for SCJP / OCPJP
Home Page -- Twitter Profile -- JavaRanch FAQ -- How to Ask a Question
|
 |
shoeb sayyed
Ranch Hand
Joined: Mar 14, 2010
Posts: 48
|
|
Hey thanks
i would remember that next time
|
 |
 |
|
|
subject: Can you explain me how the static works in this example?
|
|
|