public static int getLenth(char[] t)
{
int i=0;
int count=0;
try
{
while(t[i]!='\0')
{
++count;
i++;
}
return count;
}
catch(ArrayIndexOutOfBoundsException aiobe)
{
return count;
}
}
此方法返回 charArray 的长度。但我的问题是,是否有其他“方法”来查找 charArray 的长度而不使用这个 try、catch 语句和所有?
提前致谢 :)