Hi,
I'm little bit confused what will happen during compile time and run time with following code.
import java.text.SimpleDateFormat;
SimpleDateFormat sdf = new SimpleDateFormat( "MM/dd/yyyy" );
Will SimpleDateFormat class will load in VM during run-time ?
Thanks
I'm little bit confused what will happen during compile time and run time with following code.
import java.text.SimpleDateFormat;
SimpleDateFormat sdf = new SimpleDateFormat( "MM/dd/yyyy" );
Will SimpleDateFormat class will load in VM during run-time ?
Thanks