gpt4 book ai didi

java - 我写了一个计算正数的方法,但是如何在 main 方法中调用它

转载 作者:行者123 更新时间:2023-11-30 06:56:09 25 4
gpt4 key购买 nike

public class positiveCount {
private static int countPositive(int[] elems) {
int positive = 0;
for (int i=0;i<elems.length;i++) {
if (elems[i] > 0){
positive++;
}
}
return positive;
}
//This gives me the number of the positive numbers.

public static void main(String[] args) {


}
}

在main方法中,我想输入一个列表,例如{3,4,5,-2,-3,0},如何调用positveCount方法

最佳答案

如果主方法在同一个类中:

public static void main(String[] args) {
countPositive(new int[] {3,4,5,-2,-3,0});
}

Else(也适用于情况 1):

public static void main(String[] args) {
PositiveCount.countPositive(new int[] {3,4,5,-2,-3,0});
}

关于java - 我写了一个计算正数的方法,但是如何在 main 方法中调用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41774574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com