Source code quote in Javan° 243
May 02, 2016 am31 01:30
void foo(Object arg1)
{
if((arg1 != null) return;
else
{
String s = arg1.toString();
System.out.println(s);
}
}