blob: 79889ef3c460a4b4b2b3987f0bf2be088fa34bec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
public class MultiThreadedLoop {
public static void main(String[] args) {
MultiThreadedLoop mtl = new MultiThreadedLoop();
Thread.currentThread().setName("1stThread");
mtl.go();
}
protected void go() {
Thread secondThread = new Thread(new Runnable() {
public void run() {
loop();
}
});
secondThread.setName("2ndThread");
secondThread.start();
try {
Thread.sleep(400);
} catch (InterruptedException e) {
}
loop();
}
private void loop() {
int i = 0;
while (i < 20) {
System.out.println("Thread: " + Thread.currentThread().getName() + " loop #" + i++);
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
}
}