首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
阅读以下说明和Java源程序,将应填入(n)处的字句写在对应栏内。 【说明】 以下程序能够计算三角形、矩形和正方形的周长并输出。 程序由5个类组成:AreaTest是主类,类Triangle、Rectangle和Square分别表示三角形
阅读以下说明和Java源程序,将应填入(n)处的字句写在对应栏内。 【说明】 以下程序能够计算三角形、矩形和正方形的周长并输出。 程序由5个类组成:AreaTest是主类,类Triangle、Rectangle和Square分别表示三角形
admin
2009-05-15
31
问题
阅读以下说明和Java源程序,将应填入(n)处的字句写在对应栏内。
【说明】
以下程序能够计算三角形、矩形和正方形的周长并输出。
程序由5个类组成:AreaTest是主类,类Triangle、Rectangle和Square分别表示三角形、矩形和正方形,抽象类Figure提供了一个计算周长的抽象方法。
【程序】
public class girthTest{
public static void main (String args[]){
Figure[]figures={
new Triangle (2,3,3),new Rectangle(5,8),new Square(5)
};
for(int i=0;i<figures.length;i++){
System.out.println(figures
+"girth="+figures
.getGirth());
}
}
}
public abstract class Figure{
public abstract double getGirth();
}
public class Rectangle extends (1) {
double height;
double width;
public Rectangle(double height,double width){
this.height=height;
this.width=width;
}
public String toString(){
return "Rectangle:height="+height+",width="+width+":";
}
public double getGirth(){
return (2);
}
}
public class Square extends (3) {
public Square(double width){
(4);
}
public Stdng toString(){
return "Square:width=’+width+":";
}
}
public class Triangle extends (5) {
double la;
double lb;
double lc;
public Triangle(double la,double lb,double lc){
this.la=la;this.lb=lb;this.lc=lc;
}
public String toString(){
return "Triangle:sides=" +la+"," +lb+"," +lc+":";
}
public double getGirth(){
return la+lab+lc;
}
}
选项
答案
(2)(height+width)*2
解析
此处是类Rectangle重写了方法getGirth(),此处应当返回矩形的周长,即(heisht+width)*2。
转载请注明原文地址:https://kaotiyun.com/show/1fjZ777K
本试题收录于:
程序员上午基础知识考试题库软考初级分类
0
程序员上午基础知识考试
软考初级
相关试题推荐
阅读以下说明,回答问题1至问题4,将解答填入答题纸对应的解答栏内。[说明]某公司网络的Internet接入方式如图3-1所示。查看路由器R1的状态信息如图3-2所示,则可以确定R1的E0端口IP地址是(1),E1端口的IP地
以下是交换机Switch1的部分配置。请解释配置命令。1.配置VLANTrunk端口……Switch1(config)#interfacef0/24(进入端口24配置模式)Switch1(config-if)#swi
阅读以下说明,回答问题。【说明】某单位网络拓扑结构如图2一1所示,FTP服务器的域名为xhftp.SoftwareExam.com。在DNS服务器中为FTP服务器配置域名记录时,新建主机如图2一4所示。在图2一4所示的对话框中
阅读以下说明,回答问题1至问题3,将解答填入答题纸对应的解答栏内。【说明】请根据Windows服务器的安装与配置,回答下列问题。图2-1是本地磁盘(F:)的属性窗口,该磁盘文件系统是(1)格式。可在“运行”窗口中输入(2)命令打开命令行窗口,执行c
(66)is a one-way function that takes an arbitrarily long piece of plaintext and from it computes a fixed,length bit string.(67)i
作业调度是从处于(29)状态的作业中选取一个作业并把它装入主存。
The major goal of USB was to define an external expansion bus which makes adding(70)to a PC as easy as hooking up a telephone to
A user interface can be defined as the combination of hardware and software that helps people and computers(70)with each other.
用单模光纤做媒体的1000BaseLX以太网,在全双工条件下,网段距离最大可达(42)。
ByusingMP3,a600M-bytemusicCDcanbe(1)to50Mbytesorless.Itcanbestreamed(downloadedinchunks)sothatyoucanbe
随机试题
在“人民的国家中,人民享有广泛的民主和自由”这句话中的“人民”是()
Bodylanguageisaneasierwayofexpressingfeelingsthanspoken【C1】______.Forexample,youdonotsaytosomeoneeasilythat
Itwasacoldwinterday.AwomandroveuptotheRainbowBridgetollbooth(收费站)."I’mpayingformyself,andforthesixcarsbe
下列符合亚急性重型病毒性肝炎的描述是
《药品生产许可证》的颁发部门是
A.虫媒传播B.直接接触传播C.飞沫传播D.食物传播E.疫水传播细菌性痢疾主要经()
“壮水之主,以制阳光”指()。
根据最高人民法院的有关规定,实际施工方以发包人为被告主张权利的()。
合同的订立需要经过()两个阶段。
Anysufficientlyadvancedtechnology,notedArthurC.Clarke,aBritishscience-fictionwriter,isindistinguishablefrommagic.
最新回复
(
0
)