diff --git a/src/j1/TestThread.java b/src/j1/TestThread.java index a4d0f42..c57793a 100644 --- a/src/j1/TestThread.java +++ b/src/j1/TestThread.java @@ -5,11 +5,13 @@ public static void main(String[] args) { System.out.print("TestThread started."); - MyThread mt1 = new MyThread("1 ", 1300); - MyThread mt2 = new MyThread("2 ", 2900); + MyThread mt1 = new MyThread("1s ", 1000); + MyThread mt2 = new MyThread("2s ", 2000); + MyThread mt3 = new MyThread("2.33s ", 2333); mt1.start(); mt2.start(); + mt3.start(); } };