aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes byte Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "byte" Watch "byte" New topic
Author

byte

Vishal Arora
Greenhorn

Joined: Jul 29, 2005
Posts: 9
The output of this code given below is "Welcome to Java".Can somebody tell me why it is not an infinite loop printing welcome to java.
public class XTC {

public static void main ( String [ ] args ) { // ---> line 1
XTC x = new XTC();
x.infiniteLoop();
}
void infiniteLoop ( ) {
byte b = 1 ;
while ( ++b > 0 ) ;
System . out . println ( " Welcome to Java " ) ;
}

}
satya mamillapalli
Ranch Hand

Joined: Jun 22, 2005
Posts: 63
Watch the end of WHile loop? It ends with semicolon.(it is an empty loop)

Actaully empty loop will execute 126 times and comes out because after 127 it will start with -128..

Thanks

Satya
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: byte
 
Similar Threads
why is this not an infinite loop?
Which method to call ?
Doubt with ++ operator
static method
interface to class assignment