public static void main ( String[] args )
{
System.out.printf( “Thread name: %s started %n”, Thread.currentThread().getName() ); ClassOne classOne = new ClassOne();
Thread thread;
for ( int i = 1; i <= 5; i++ )
{
thread = new Thread( classOne );
thread.start();
}
System.out.printf( “Thread name: %s completed %n”, Thread.currentThread().getName() );
}