3

我有以下内容:

int count = args.length;

奇怪的是,我想在不使用长度字段的情况下找出数组长度。还有其他方法吗?

这是我已经尝试过的(没有成功):

int count=0; while (args [count] !=null) count ++;
int count=0; while (!(args[count].equals(""))) count ++;}
4

5 回答 5

4

我认为没有必要这样做。但是,最简单的方法是使用enhanced for loop

 int count=0;
 for(int i:array)
 {
   count++;
 }

 System.out.println(count);
于 2012-06-28T01:19:01.330 回答
3

我不确定你为什么想做其他任何事情,但这只是我想出的,看看什么会起作用。这对我有用:

    int count = 0;
    int[] someArray = new int[5];  
    int temp;
    try
    {
        while(true)
        {
            temp = someArray[count];
            count++;
        }
    }
    catch(Exception ex)
    {
           System.out.println(count); 
    }
于 2012-06-28T01:16:37.390 回答
0

如果索引超出范围,则不能使用 [] 访问数组。

您可以使用 for-each 循环

for (String s: args){
    count++;
}
于 2012-06-28T01:18:32.347 回答
0
public class ArrayLength {
    static int number[] = { 1, 5, 8, 5, 6, 2, 4, 5, 1, 8, 9, 6, 4, 7, 4, 7, 5, 1, 3, 55, 74, 47, 98, 282, 584, 258, 548,
            56 };

    public static void main(String[] args) {
        calculatingLength();
    System.out.println(number.length);
    }

    public static void calculatingLength() {
        int i = 0;
        for (int num : number) {

            i++;

        }
        System.out.println("Total Size Of Array :" + i);

    }


}
于 2019-06-13T06:33:54.070 回答
-4

怎么样Arrays.asList(yourArray).size();

于 2012-06-28T01:16:46.860 回答