会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
且穷且独立
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
4
5
6
7
8
9
10
11
12
···
15
下一页
2016年9月25日
1.建立exception包,编写TestException.java程序,主方法中有以下代码,确定其中可能出现的异常,进行捕获处理。
摘要: package d0923; public class TestException { public static void main(String[] args) { for(int i=0;i
阅读全文
posted @ 2016-09-25 09:10 削肾客
阅读(436)
评论(0)
推荐(0)
编辑
2016年9月24日
38.利用接口做参数,写个计算器,能完成+-*/运算 (1)定义一个接口Compute含有一个方法int computer(int n,int m); (2)设计四个类分别实现此接口,完成+-*/运算 (3)设计一个类UseCompute,含有方法: public void useCom(Compute com, int one, int two) 此方法要求能够:1.用传递过来的对象调用comp
摘要: //接口Compute package jieKou; public interface Compute { int Computer(int n,int m); } //加 package jieKou; public class Jia implements Compute { @Overrid
阅读全文
posted @ 2016-09-24 16:03 削肾客
阅读(2820)
评论(0)
推荐(0)
编辑
37.看下图实现如下接口和类,并完成Adventure中的主方法。
摘要: //接口Swim package jieKou; public interface ICanswim { void Swim(); } //接口Fly package jieKou; public interface ICanfly { void Fly(); } //抽象方法ActionChara
阅读全文
posted @ 2016-09-24 15:59 削肾客
阅读(248)
评论(0)
推荐(0)
编辑
36.中国特色社会主义的体制中有这样的现象:地方省政府要坚持党的领导和按 照国务院的指示进行安全生产。请编写一个java应用程序描述上述的体制现象。 要求如下: (1)该应用程序中有一个“党中央”接口:CentralPartyCommittee,该接口中 有个“坚持党的领导”方法:void partyLeader() (2)该应用程序中有一个“国务院”抽象类:StateCouncil,该抽象类中有
摘要: //接口:CentralPartyCommittee package jieKou; public interface CentralPartyCommittee { void partyLeader(); } //抽象类:StateCouncil package jieKou; public in
阅读全文
posted @ 2016-09-24 15:54 削肾客
阅读(409)
评论(0)
推荐(0)
编辑
2016年9月23日
35.按要求编写Java程序: (1)编写一个接口:InterfaceA,只含有一个方法int method(int n); (2)编写一个类:ClassA来实现接口InterfaceA,实现int method(int n)接口方 法时,要求计算1到n的和; (3)编写另一个类:ClassB来实现接口InterfaceA,实现int method(int n)接口 方法时,要求计算n的阶乘(n!
摘要: //接口IInterfaceA1 package jieKou; public interface IInterfaceA1 { int method(int n); } //ClassA类 package jieKou; public class ClassA implements IInterf
阅读全文
posted @ 2016-09-23 22:04 削肾客
阅读(581)
评论(0)
推荐(0)
编辑
34.编写2个接口:InterfaceA和InterfaceB;在接口InterfaceA中有个方法void printCapitalLetter();在接口InterfaceB中有个方法void printLowercaseLetter();然 后写一个类Print实现接口InterfaceA和InterfaceB,要求printCapitalLetter()方法 实现输出大写英文字母表的功能,
摘要: //接口InterfaceA package jieKou; public interface IInterfaceA { void printCapitalLetter(); } //接口InterfaceB package jieKou; public interface IInterfaceB
阅读全文
posted @ 2016-09-23 21:21 削肾客
阅读(898)
评论(0)
推荐(0)
编辑
3. 编写Java应用程序,定义Animal类,此类中有动物的属性:名称 name,腿的数量legs,统计动物的数量 count;方法:设置动物腿数量的方法 void setLegs(),获得腿数量的方法 getLegs(),设置动物名称的方法 setKind(),获得动物名称的方法 getKind(),获得动物数量的方法 getCount()。定义Fish类,是Animal类的子类,统计鱼的数量
摘要: //Animal 类 package d922B; public class Animal { private String kind; private int legs,count; public String getKind() { return kind; } public void setK
阅读全文
posted @ 2016-09-23 19:18 削肾客
阅读(1689)
评论(0)
推荐(0)
编辑
2016年9月22日
2.定义图形类Shape,该类中有获得面积的方法getArea();定义长方形类Rect,该类是Shape的子类,类中有矩形长和宽的变量double a,double b,设置长和宽的方法setWidth()、setHeight(),使用getArea()求矩形面积;利用getArea方法实现题1中圆面积的求解。
摘要: // 图形类Shape package d922B; public class Shape { double getArea(ShapePara x){ return x.getArea(); } double getArea(Rect y) { return y.getA() y.getB();
阅读全文
posted @ 2016-09-22 19:48 削肾客
阅读(5609)
评论(0)
推荐(0)
编辑
1.(1)编写一个接口ShapePara,要求: 接口中的方法: int getArea():获得图形的面积。int getCircumference():获得图形的周长 (2)编写一个圆类Circle,要求:圆类Circle实现接口ShapePara。 该类包含有成员变量: radius:public 修饰的double类型radius,表示圆的半径。 x:private修饰的double型变量
摘要: //接口 ShapePara package d922B; public interface ShapePara { int getArea(); int getCircumference(); } //圆类 package d922B; public class Circle implements
阅读全文
posted @ 2016-09-22 19:46 削肾客
阅读(2855)
评论(0)
推荐(0)
编辑
21.编写一个Java应用程序,该程序包括3个类:Monkey类、People类和主类 E。要求: (1) Monkey类中有个构造方法:Monkey (String s),并且有个public void speak() 方法,在speak方法中输出“咿咿呀呀......”的信息。 (2)People类是Monkey类的子类,在People类中重写方法speak(),在speak方法 中输出“小样
摘要: //Monkey类 package d922; public class Monkey { Monkey() { } Monkey (String s) { System.out.println(s); } public void speak() { System.out.println("咿呀")
阅读全文
posted @ 2016-09-22 17:53 削肾客
阅读(4553)
评论(0)
推荐(0)
编辑
上一页
1
···
4
5
6
7
8
9
10
11
12
···
15
下一页
公告