Thread foo = new ShowThread("Foo"); foo.setPriority( Thread.NORM_PRIORITY); foo.start(); Thread bar = new ShowThread("Bar"); bar.setPriority( Thread.NORM_PRIORITY+1 ); bar.start();