16 lines
322 B
Java
16 lines
322 B
Java
package lr12;
|
|
|
|
public class e4 {
|
|
public static void main(String[] args) {
|
|
for (int i = 0; i < 10; i++) {
|
|
final int threadNumber = i;
|
|
|
|
Thread t = new Thread(() -> {
|
|
System.out.println("Thread # " + threadNumber);
|
|
});
|
|
|
|
t.start();
|
|
}
|
|
}
|
|
}
|