public class multithreading_SimpleExample { public static void main(String args[]) { Thread thread = Thread.currentThread(); System.out.println(thread); } }
Thread[main,5,main]
Previous Question Next Question
Your comments will be displayed only after manual approval.