所以我昨天在一次测验中被要求制作我自己的字符串数组大小的方法。有人告诉我我不能使用 .length 快捷方式。这是我的尝试,对吗?
//doesn't receive array! because it's a datamember in the class already
public int sizeOfArray(){
int counter = 0;
while(arrayName != empty){
arrayName[counter];
counter ++;
}
return counter;
}