About Question com.enthuware.ets.scjp.v6.2.779 :
Posted: Tue Jul 24, 2012 6:19 am
Code: Select all
if public int getLen(List al )
{
if( al != null) return ( (String) al.get(0)).length();
else return 0;
}
Java Certification Resources and Java Discussion Forum
https://enthuware.com/forum/
Code: Select all
if public int getLen(List al )
{
if( al != null) return ( (String) al.get(0)).length();
else return 0;
}