JAVA,小程序,没听懂,求助,大佬帮写一下!
估计你是一个刚接触java的初学者吧,创建工程和类,题目的意思是,首先创建一个工程,工程名为(myproduct),接着在这个工程中创建包(edu.abc.test1)。然后在这个包下定义一个时钟类,名为Clock,设置它的三个成员变量,创建带参构造方法以及题目所说的show()方法,这个类就完成了。接着定义测试类(名为:TestClass),测试类中要存在main方法,这样才能使程序能在控制台中运行。在这个类中创建时钟类对象,利用构造方法初始化设置你所需的参数,并调用时钟类的show方法,接着就可以运行,在控制台中显示数据结果了。相关代码及运行结果如下所示:
//Clock实体类
package edu.abc.test1;
public class Clock {
// 3个成员变量
// 小时
private int hour;
// 分钟
private int minutes;
// 秒
private int second;
// 带3个参数的构造方法
public Clock(int hour, int minutes, int second) {
super();
this.hour = hour;
this.minutes = minutes;
this.second = second;
}
// show方法
public void show(){
System.out.println(hour+":"+minutes+":"+second);
}
}
// TestClass测试类
package edu.abc.test1;
public class TestClass {
public static void main(String[] args) {
Clock clock = new Clock(8, 30, 0);
Clock clock1 = new Clock(11, 45, 0);
Clock clock2 = new Clock(13, 15, 17);
clock.show();
clock1.show();
clock2.show();
}
}
谢谢!
public class Clock {
private int hh;
private int mm;
private int ss;
public Clock(int hh,int mm,int ss){
this.hh = hh;
this.mm = mm;
this.ss = ss;
}
public void Show() {
if (hh >= 24 || mm >= 60 || ss > 60) {
System.out.println("input vlue is out of range");
} else {
System.out.println(hh + ":" + mm + ":" + ss);
}
}
}
package edu.abc.test1;
public class TestClass {
public static void main(String[] args){
Clock c = new Clock(8,8,8);
c.Show();
}
}