
technology-usage.tests.data.javase.JavaSEThread Maven / Gradle / Ivy
The newest version!
package com.jboss.windup.test;
public class Main extends Thread {
public static void main(String[] args) {
Main thread = new Main();
thread.start();
System.out.println("The thread inside the main method!!!");
}
public void run() {
System.out.println("The thread outside the main method!!");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy