File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes Can you explain me how the static works in this example? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Can you explain me how the static works in this example?" Watch "Can you explain me how the static works in this example?" New topic
Author

Can you explain me how the static works in this example?

shoeb sayyed
Ranch Hand

Joined: Mar 14, 2010
Posts: 48

This message was edited 1 time. Last update was at by Devaka Cooray



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...

This message was edited 1 time. Last update was at by Vasiq Molvizadah



Human Knowledge Belongs to the World.
- Vasiq Mz
Devaka Cooray
Saloon Keeper

Joined: Jul 29, 2008
Posts: 2586

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?
 
developer file tools