首页
登录
从业资格
阅读以下说明和Java代码,将应填入 (n) 处的语句或语句成分写在答题纸的对应
阅读以下说明和Java代码,将应填入 (n) 处的语句或语句成分写在答题纸的对应
题库
2022-08-02
48
问题
阅读以下说明和Java代码,将应填入 (n) 处的语句或语句成分写在答题纸的对应栏内。【说明】某数据文件students.txt的内容为100名学生的学号和成绩,下面的程序将文件中的数据全部读入对象数组,按分数从高到低进行排序后选出排名前30%的学生。【Java代码】import java.io.*; class Student { private String sNO; //学号 private int Credit; //分数 public int getCredit( ){ return Credit; } public String toString() { return "sNO = " + this.sNO + ", Credit = " + this.Credit; } Student(String sNO, int Credit){ (1) = sNO; (2) = Credit; }} public class SortStudent { void sort(Student[ ] s) { //Sort the array s[ ] in descending order of Credit for (int i = 0; i < s.length-1; i++) { for (int .j = i+1; j < s.length; j++) { if (s
. (3) < s[j]. (4) ) { Student tmp = s
; s
= s[j]; s[j] = tmp; }} } } public static void main(String argv[ ]) { Student[ ] testStudent = new Student[size]; try {BufferedReader in = new BufferedReader(new FileReader("students.txt"));boolean done = false; int i = 0;while (!done) { String s = in.readLine(); //每次读取一个学生的学号和成绩 if (s != null) { String tmp[ ] = s.split(","); testStudent[i++] = (5) (tmp[0], Integer.parseInt (tmp[1])); } else done = true;}in.close(); (6) = new SortStudent();ss.sort(testStudent);System.out.println("top 30%:");for (int j = 0; j < size * 0.3; j++) System.out.println(testStudent[j]); } catch (IOException e) {System.out.println("io error!"); }catch (NumberFormatException e) {System.out.println("not a number!"); } } (7) int size = 100; //学生总数}
选项
答案
解析
(1)this.sNO
(2)this.Credit
(3)getCredit()
(4)getCredit()
(5)new Student
(6)SortStudent ss
(7)static 或static final
首先分析程序的整体结构,本题中定义了两个类:Student和SortStudent,分别用于定义学生和进行排序。类Student的定义中,第一部分为private访问权限的成员,要对其进行访问,需要通过具有相应访问权限的成员函数。
Student类的构造器方法的参数和类中属性同名,需要用this标识符进行区分,因此前面俩空需要用this表明当前Student的属性。
SortStudent类中的成员函数sort和Student类的对象所构成的对象数组根据分数进行排序,而由于在Strdent类中学号和分数为private访问权限,不可从外部直接访问,所以要通过getCredit而得到。
Main函数中需要将学生信息读入,并根据学生信息创建对象并加入对象数组。空(5)为new Student。空(6)处根据其所在的语句右侧new SortStudent以及其后序语句ss.sort的方法调用,可知,需要声明SortStudent类的对象引用ss,所以空(6)处为SortStrdent ss。空(7)处是属性size的类型描述,size是作为作为数组大小的参数,其值不可变,因此是static 或者static final。
转载请注明原文地址:https://tihaiku.com/congyezige/2427661.html
本试题收录于:
初级程序员题库软件水平考试初中高级分类
初级程序员
软件水平考试初中高级
相关试题推荐
根据《建筑工程设计信息模型分类和编码标准》,分类对象编码由表编码、大类代码、中类
IE浏览器能够正确解析()代码。A.ASP B.HTML C.JSP D
在如下所示的一段XML代码中,根元素名为()。 <?xmlversion="
负责解释执行JavaScript代码的是()。A.Web服务器 B.Web浏览
在网页中创建一个如下图所示的表单控件的HTML代码是()。 A.<input
下面的XML代码段中,语法正确的是()。A.<!-xml示例-!><?xml
在网页中创建Email链接,代码正确的是()。A.<ahref=“call
ACL语句“permittcphost10.0.0.10eqwwwa
下列设置图像地图正确的HTML代码是()。A.<areashape="po
()属于系统软件,它直接执行高级语言源程序或与源程序等价的某种中间代码。A.编译
随机试题
[originaltext]Howmanyteethhaveyouhadfilledinthepasttwoyears?If
图案pattern
OneCity,TwoVisionsExpertsdifferinmethod,butagr
[originaltext]W:Hi,Paul.Thanksverymuchforjoiningustoday.You’vespent
Thenewfolksong_______onreallyquickly.A、carriedB、tookC、caughtD、gotC这首新
意义学习就是将符号所代表的新知识与学习者认知结构中已有的适当观念建立起()。
穿孔作业穿凿第一排孔时,钻机的中轴线与台阶坡顶线的夹角应不小于( )。A.30
提高劳动生产率可以( )运输成本。 A.提高 B.降低 C.不
雇主组织的主要形式包括()。A.职业协会 B.行业协会 C.
家庭成员在不同市场工作中效率不同的原因不包括()方面存在差异。A.性别 B.
最新回复
(
0
)