为了账号安全,请及时绑定邮箱和手机立即绑定

求助,大神帮忙看看

求助,大神帮忙看看

Tanh 2017-04-11 10:43:57
import java.util.Arrays;;public class ScoreSort { int[] scores={89,-23,64,91,119,52,73}; public static void main(String[] args) { System.out.println("考试成绩的前三名为:"); ScoreSort a = new ScoreSort(); a.showTop3(scores); } public void showTop3(int []scores){ Arrays.sort(scores); int num=0; for(int i=scores.length-1;i>=0;i++){ if(scores[i]<0||scores[i]>100){ continue; } num++; if(num<=3) System.out.println(scores[i]); else break; } } }为什么a.showTop3(scores); 括号内score会报错Cannot make a static reference to the non-static field scores,要怎么改
查看完整描述

1 回答

已采纳
?
younghu

TA贡献25条经验 获得超6个赞

这是基础啊,  你score 数组不是静态的 ! 在scores前价格static好了

查看完整回答
反对 回复 2017-04-11
  • 1 回答
  • 0 关注
  • 1222 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信