Simply Easy Learning at your Fignertips

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

Supported by 4k+

Top Categories

Lorem ipsum dolor sit amet, consectetur adipiscing dolor sit amet, consectetur elit.

CSS Tutorials

Learn More

C ++ Tutorials

Learn More

React Native

Learn More

Javascript

Learn More

HTML Tutorials

Learn More

Php Tutorials

Learn More

Scala Tutorials

Learn More

Angular JS 4

Learn More

C# Tutorials

Learn More

Latest CSS Tutorials

No posts found!

Latest JS Tutorials

No posts found!

Latest KoTLIN Tutorials

No posts found!

Code Editor

Lorem ipsum dolor sit amet, consectetur adipiscing dolor sit amet, consectetur elit.

				
					public class Main {
    public static void main(String[] args) {
        System.out.println("The name of the current thread is: "+Thread.currentThread().getName());
        System.out.println("Now, changing the name of the thread using the setName() method...");
        Thread.currentThread().setName("Main-Thread");
        System.out.println("The name of the thread after changing its first name: "+ Thread.currentThread().getName());
    }
}
				
			
				
					public class Main {
    public static void main(String[] args) {
        System.out.println("The name of the current thread is: "+Thread.currentThread().getName());
        System.out.println("Now, changing the name of the thread using the setName() method...");
        Thread.currentThread().setName("Main-Thread");
        System.out.println("The name of the thread after changing its first name: "+ Thread.currentThread().getName());
    }
}