BytePrinter
threads:
public class ThreadsTest {
public static void main(String args[]) {
BytePrinter bp1 = new BytePrinter();
BytePrinter bp2 = new BytePrinter();
BytePrinter bp3 = new BytePrinter();
bp1.start();
bp2.start();
bp3.start();
}
}
The order of the output you see from this program is implementation dependent,
and mostly unpredictable. It may look something like this:
-128 -127 -126 ... 125 126 127 -128 -127 -126 ... 125 126 127 -128 -127 -126 ... 125 126 127In this case the three threads run sequentially, one after the other. However on a few systems you may see something different