我想知道如何在java中找到普通数组中的元素数量。例如,如果我有一个大小为10的int数组,并且我只插入了5个元素。现在,我想检查一下我的数组中的元素数量?以下是更详细说明的代码。请帮忙
public static void main(String[] args) {
int [] intArray = new int[10];
char [] charArray = new char[10];
int count = 0;
for(int i=0; i<=5; i++) {
intArray[i] = 5;
charArray[i] = 'a';
}
for(int j=0; j<=intArray.length; j++) {
if(intArray[j] != null) {
count++;
}
}
System.out.println("int Array element : "+ count);
}
答案 0 :(得分:7)
代码错了。你声明一个int[]
:这不能包含空值,所以这个语句不会编译:
if(intArray[j] != null) {
然后,如果你想存储很多项目,但是你不知道如何,你应该使用Collection
,例如ArrayList
List<Integer> ints = new ArrayList<Integer>(); //Or new ArrayList<>(); - Java7
然后,您可以使用以下内容:
ints.size();
现在,如果确实想要使用数组,那么您可以计算非零值的数量:
for(int j=0; j<=intArray.length; j++) {
if(intArray[j] != 0) {
count++;
}
}
或者 Java 7 :
更好for(int i : intArray) {
if(i!=0) {
count++;
}
}
Java 8 :
更好Arrays.stream(intArray).filter(i -> i !=0).count();
答案 1 :(得分:3)
结帐Collection.frequency()
。这将计算特定对象(在本例中为null
)出现在集合中的次数。
以下只是一个帮助您的例子
String[] array = new String[5];
array[0] = "This";
array[1] = null;
array[2] = "is";
array[3] = null;
array[4] = "a test";
int count = Collections.frequency(Arrays.asList(array), null);
System.out.println("String: " + count + " items out of " + array.length + " are null");
int[] iArray = new int[3];
iArray[0] = 0;
iArray[1] = 1;
iArray[2] = 2;
List<Integer> iList = new ArrayList<>();
for (int i : iArray) {
iList.add(i);
}
int iCount = Collections.frequency(iList, 0);
System.out.println("Int: " + iCount + " items out of " + iArray.length + " are zero");
char[] cArray = new char[3];
cArray[0] = 'c';
cArray[1] = ' ';
cArray[2] = 'a';
List<Character> cList = new ArrayList<>();
for (char c : cArray) {
cList.add(c);
}
int cCount = Collections.frequency(cList, ' ');
System.out.println("Char: " + cCount + " items out of " + cArray.length + " are ' '");
输出:
字符串:5个中的2个项目为空 Int:3个中的1个项目为零 Char:3个中的1个是''
答案 2 :(得分:0)
您可以将第一个循环更改为以下内容:
for(int i=0; i<=5; i++) {
intArray[i] = 5;
charArray[i] = 'a';
count++;
}
或者更好的是,使用ArrayList而不是使用数组。这是一个arraylists如何工作的例子。
ArrayList<Integer> intList = new ArrayList<Integer>();
ArrayList<Character> charList = new ArrayList<Character>();
for (int i = 0; i < 5; i++){
intList.add(5);
charList.add('a');
}
System.out.println("int list element : " + intList.size());
ArrayList是动态的,.size()
只返回当前在arraylist中的项目的大小。
答案 3 :(得分:0)
如果要实现自己的计算数组元素的解决方案,如果需要,可以随时使用array
实现自己的包装类。
public class classWithArray {
private int[] arr;
private int count;
public classWithArray(int arrLength) {
arr = new int[5];
count = 0;
}
public void add(int num) {
arr[count] = num;
count++;
}
public int getCount() {
return count;
}
public int getElement(int index) {
return arr[index];
}
// Add other wrapper methods.
}
您可以制作array
类型的Generic
(虽然我对Java
了解不多),以使其适用于任何数据类型。
答案 4 :(得分:0)
好吧,我们可以在数组中使用count来表示非零元素,Code是Below ::
public class SomeElementOfArrayUsingCount{
public static void main(String[] args){
double total;//The sum of non-zero numbers in the Array.
total=0;
double average;//The average of non-zero numbers.
int i;
double count;//The number of non-zero numbers.
count = 0;
int[] list;
list = new int[5];//make a container of 5.
list[0]=2;
list[1]=4;
list[2]=4;
list[3]=5;
list[4]=2;
for(i=0;i<list.length;i++){
if(list[i]!=0){
total = total + list[i];//Add element to the array
count = count + 1;//and Count it
}
}
if(count==0){
System.out.println("There were no non-zero elements");
}
else {
average = total/count;//Divide by number of items
System.out.println("The average is " + average + " the total count is " + count);
}
}
}
答案 5 :(得分:-3)
sysout(); 这将对您的流程有所帮助,因为它将打印出您要寻找的答案。