gpt4 book ai didi

java - 为什么 Eclipse 在我编写的行中显示错误 public static void main(String[] args)

转载 作者:行者123 更新时间:2023-12-02 08:46:36 24 4
gpt4 key购买 nike

那么为什么public static void main(String[] args)我收到错误。我该怎么做才能解决这个问题?

package linkedList;

public class HackerRank {

public class Solution {

// Complete the aVeryBigSum function below.
public long aVeryBigSum(long[] ar) {
long a=0;
for(int i=0;i<ar.length;i++){
a=ar[i]+a;
}

return a;
}


public static void main(String[] args) { ///why this line is not correct
Solution s= new Solution();
long[] ar= {10000,20000,30000};

System.out.println(s.aVeryBigSum(ar));

}
}
}

最佳答案

还有另一种可能的解决方案,即从 HackerRank 类中取出嵌套的 Solution 类,因为我发现您目前没有对它执行任何操作。

public class Solution {

// Complete the aVeryBigSum function below.
public long aVeryBigSum(long[] ar) {
long a = 0;
for (int i = 0; i < ar.length; i++) {
a = ar[i] + a;
}
return a;
}

public static void main(String[] args) {
Solution s = new Solution();
long[] ar = { 10000, 20000, 30000 };

System.out.println(s.aVeryBigSum(ar));
}
}

这可以确保您的静态 main 方法有效。

关于java - 为什么 Eclipse 在我编写的行中显示错误 public static void main(String[] args),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61044317/

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