Hi,
I got this code from the internet and i compiled it. But i dont understand the result. Could u explain the result ? I cant figure out the output that shows 'classname@somenumbers' .
thz
public class Andy
{
public static final Andy nd= new Andy();
private Andy()
{
}
public static void main(String args[])
{ System.out.println(Andy.nd);
}
}