摘要: import java.io.File; import java.io.FileInputStream; import java.io.InputStream; public class Demo { public static void main(String[] args) throws Exc 阅读全文
posted @ 2020-08-31 20:50 小强哥in 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 设计一款电子钟类,用于显示时、分、秒 含有形参有默认值的默认构造函数; 前缀++ 和 后缀—用于调整时间,每次调整均对秒进行调整,若秒满60,则分加1,若分满60则时加1,时满24,则清零重新开始; 设置函数用于输入(设定)时间; 设置函数用于输出时间。 import java.util.Scann 阅读全文
posted @ 2020-08-30 23:57 小强哥in 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 一定义一个基类BaseClass,从它派生出类DerivedClass。BaseClass有成员函数fn1(),fn2(),DerivedClass也有成员函数fn1(),fn2()。在主函数中声明对象来调用fn1(),fn2(),观察运行结果 class BaseClass{ public voi 阅读全文
posted @ 2020-08-29 20:45 小强哥in 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 定义一个Document类,有数据成员name,从Document派生Book类,增加数据成员pageCount。 private String name; //书名 public Document(String name) { this.name = name; } public String g 阅读全文
posted @ 2020-08-28 19:33 小强哥in 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 一定义一个哺乳动物类Mammal,再由此派生出狗类Dog,定义一个Dog类的对象,观察基类和派生类的构造函数的调用顺序。 public class Dogasd extends Mammal{ private int leg; public Dogasd(String name, int age, 阅读全文
posted @ 2020-08-27 20:23 小强哥in 阅读(148) 评论(0) 推荐(0) 编辑
摘要: class Shape { public double getArea() { return 0; } } class Rectangle extends Shape { private double len; private double width; public Rectangle(doubl 阅读全文
posted @ 2020-08-26 20:31 小强哥in 阅读(141) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Circle { private double radius; //半径 public Circle() { } public Circle(double radius) { this.radius = radius; } 阅读全文
posted @ 2020-08-25 20:29 小强哥in 阅读(75) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Rectangle { private int length; //矩形的长 private int width; //矩形的宽 public Rectangle() { } public Rectangle(int le 阅读全文
posted @ 2020-08-24 20:28 小强哥in 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.Scanner; 2 //点类 3 class Point{ 4 private float x; //横坐标 5 private float y; //纵坐标 6 public Point(){ 7 } 8 public Point(float x,float 阅读全文
posted @ 2020-08-23 20:27 小强哥in 阅读(110) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class dog { private int weight; private int age; public dog(int a,int b) { weight=a;age=b; } public void set_weight(i 阅读全文
posted @ 2020-08-22 20:27 小强哥in 阅读(104) 评论(0) 推荐(0) 编辑