JAVA填空题

JAVA填空题,第1张

拜托分也稍微给多点啊。考代码的,自己上机运行一下就出来了。

看了一下,有一题会害了你:

第59题。按常理,应该填“抽象”二字,如果“接口”也算类的话,那填它也对。

但查了下API,System既不是接口又不是抽象类,而是个最终类”--类声明中包含“final”字段;这么说,就应该填“最终”了啰可从没听说过“最终类”不可被实例化--String类也是个最终类,但它可以被实例化,用“new String("");”来调用它根本没错;只听说过“最终类”不能被继承。

可见这题除了出题者任何人也答不出来。

但有个参考答案:

“构造方法被私有化,且未提供用以获取实例的静态属性或静态方法的”

如果对java没兴趣不想深究,就当俺没说好了。

上面答案错误

应该为

int size=strlength();//此处L应该小写

for(int i=0;i<size;i++)

String c=strsubstring(i,i+1);//此处S应该小写

第二题;

public class Exe2 implements ActionListener

y=Mathsqrt(x);

csetText(""+y);

程序本身也有问题,少调用一个包

import javaxswing;

1编辑源程序,编译为字节码,解释执行字节码(编辑、编译、执行)

2源程序的文件名,javaappletApplet,MyApplet

3javac MyJavaApplicationjava,java MyJavaApplication

42 2

5false

633 66 99

7private static double additoryFee = 01;

8定义,调用

9String,StringBuffer

10Label gxdd = new Label("广西广播电视大学");

Button gb = new Button("关闭");

11class,interface

12套接字,IP地址,接口

130 31

14类名

15父类

class Student{

private String name;

private int age;

private String degree;

public Student(String name, int age, String degree) {

super();

thisname = name;

thisage = age;

thisdegree = degree;

}

public Student() {

super();

}

public String getName() {

return name;

}

public void setName(String name) {

thisname = name;

}

public int getAge() {

return age;

}

public void setAge(int age) {

thisage = age;

}

public String getDegree() {

return degree;

}

public void setDegree(String degree) {

thisdegree = degree;

}

public void show(){

Systemoutprintln("姓名:" + thisgetName() + " 年龄:" + thisgetAge() + " 学位:" + thisgetDegree() );

}

}

class Undergraduate extends Student{

private String specialty;

public String getSpecialty() {

return specialty;

}

public void setSpecialty(String specialty) {

thisspecialty = specialty;

}

public Undergraduate(String name, int age, String degree, String specialty) {

super(name, age, degree);

thisspecialty = specialty;

}

public Undergraduate(String name, int age, String degree) {

super(name, age, degree);

}

public void show(){

Systemoutprintln("姓名:" + thisgetName() + " 年龄:" + thisgetAge() + " 学位:" + thisgetDegree() + " 专业:" + thisgetSpecialty());

}

}

class Graduate extends Student{

private String direction;

public String getDirection() {

return direction;

}

public void setDirection(String direction) {

thisdirection = direction;

}

public Graduate(String name, int age, String degree, String direction) {

super(name, age, degree);

thisdirection = direction;

}

public Graduate(String name, int age, String degree) {

super(name, age, degree);

}

public void show(){

Systemoutprintln("姓名:" + thisgetName() + " 年龄:" + thisgetAge() + " 学位:" + thisgetDegree() + " 研究方向:" + thisgetDirection());

}

}

public class exp1401 {

public static void main(String[] args) {

Undergraduate stu1=new Undergraduate("张三",23,"本科","工业自动化");

        Graduate stu2=new Graduate("李四",27,"硕士","网络技术");

        stu1show();

        stu2show();

}

}

1、以下为一个java的完整程序,它定义了一个类Car,并在程序中创建了一个该类的对象DemoCar,调用该对象的set_number方法设置车号属性为3388,调用该对象的show_number方法输出车号。

//Carjava

class Car

{ int car_number;

void set_number(int car_num)

{ car_number=car_num;

}

void show_number()

{ Systemoutprintln(“My car No is :”+car_number);

}

}

//CarDemojava

class CarDemo

{ public static void main(String args[])

{ Car Democar=new Car();

DemoCarset_number(3388);

DemoCarshow_number();

}

}

2、以下程序用于创建一个二维整型数组,并将其以5行4列对齐的格式输出请将划线部分填完整。

public class Java_2

{

public static void main(String[] args) {

int[][] aMatrix = {{1,1,1,1},{2,2,2,2},{3,3,3,3},{4,4,4,4},{5,5,5,5}};

int i = 0; //循环变量

int j = 0; //循环变量

//print matrix

for(i = 0; i < aMatrixlength; i++) {

for ( j = 0; j < aMatrix[i]length; j++) {

Systemoutprint(aMatrix[i][j] + " ");

}

Systemoutprintln();}}}

以上就是关于JAVA填空题全部的内容,包括:JAVA填空题、2道不会做的JAVA编程填空题.、求 JAVA 试题 填空题答案。等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10096972.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存