gpt4 book ai didi

java - 使用显示为字符串的时间

转载 作者:行者123 更新时间:2023-11-30 09:14:11 25 4
gpt4 key购买 nike

好吧,我正在学习 AP 计算机科学类(class),直到现在我发现内容简单且没有挑战性,因为我已经有 Java 背景。但是,现在我遇到了类(class)提供给我的一些代码的问题,并基于它编写了一个函数。我用谷歌搜索了它,并测试了许多不同的东西来尝试让它工作但无济于事。所以希望你们能对此有所了解,或许能帮助我弄清楚。

首先,这本书为我提供了这段代码作为基本的 Time 类:

public class Time extends Object {          
private int itsHour;
private int itsMin;
/** Create an object for the given hour and minute. If min
* is negative, adjust the values to make 0 <= min < 60. */
public Time (int hour, int min) { // constructor
super();

itsHour = hour;

for (itsMin = min; itsMin < 0; itsMin = itsMin + 60) {

itsHour--;

}

} //=======================

/** Return the time expressed in military time. */

public String toString() {

if (itsHour < 10) {

return ("0" + itsHour) + itsMin;

} else {

return ("" + itsHour) + itsMin;
}
}
/** Return the result of adding this Time to that Time. */
public Time add (Time that) {
// Read below at issue #2
}
}

这是他们提供给我们使用的主要类,然后他们提供了一个名为 TimeTester 的类,用于执行命令。注释决定了应该发生什么。

import javax.swing.JOptionPane; 

class TimeTester {
public static void main (String[] args) {
Time t1 = new Time (13, 25);
Time t2 = new Time (8, -150);
JOptionPane.showMessageDialog (null, "1 " + t1.toString());
JOptionPane.showMessageDialog (null, "2 " + t2.toString());
Time t3 = t1.add (t2);
JOptionPane.showMessageDialog (null, "3 " + t3.toString());
t1 = t2.add (t3);
JOptionPane.showMessageDialog (null, "1 " + t1.toString());
System.exit (0);
} //=======================
}

现在就像我说的那样,这个代码是字面上交给我的,它正在理解代码并让它为我工作,而我实际上做不到。所以下面基本上是我遇到的关键问题。

1) 我了解它应该如何运行以及执行者做什么,但我不明白它究竟做了什么来实现结果。

2) 第一组代码中的 add 函数基本上是它的主类,是作业的主要部分。作业内容如下:

Exercise 4.15 (harder) Write the Time method public Time add (Time that): The executor returns a new Time object that is the sum of the two, e.g., 0740 add 1430 is 2210. If the sum is more than 2359, drop the extra 24 hours, e.g., 1300 add 1400 is 300. Assigned from: http://www.cs.ccsu.edu/~jones/chap04.pdf

当我在执行“now.add(wait)”的 TimeTester 中将值传递给 add 函数时,我会使用“that”提取结果,但值不会向前拉。

我也曾尝试更改函数,以便获得我自己的理解并使其适合我。我更改了 TimeTester 中的 Time later 调用,然后编辑函数 add 以接受 2 个值。然后将这段代码添加到添加函数中:

public Time add (Time time1, Time time2) {
String t1String = time1.toString(); // Value is: "0730"
String t2String = time2.toString(); // Value is: "0245"
int t1convert = Integer.parseInt(t1String, 2); // Value is 730
int t2convert = Integer.parseInt(t2String, 2); // Value is: 245
int total = t1convert + t2convert; // Value added together is: 1015
return total; // Return value of total
}

所以我的电话是这样的:

public static void main (String[] args) {
now = new Time (7, 30); // 7:30 in the morning
wait = new Time (2, 45); // 2 hours 45 minutes
later = now.add (now, wait); // produces 10:15 in the morning
JOptionPane.showMessageDialog(null, now + " + " + wait + " = " + later.toString());
System.exit (0);
}

然而,所有这些代码都不会编译并产生可以返回到我的 TimeTester 的结果,它总是会产生一个“不兼容类型”的编译错误,指的是我的返回总数;线。所以它显然不能返回整数。所以我完全不知道该怎么做才能让它增加两倍。

3) 我无法在使用分号格式化的情况下使用内置的 Java 时间函数。我知道该怎么做,这就是为什么这种不同的方式让我难以自拔。

4) 我不想让你为我写代码,我想更好地理解它,也许有人指出我的错误,这样我就能理解它到底发生了什么.

我知道这是一篇很长的帖子,但是当我寻求帮助时,我喜欢描述性的并提供我所能提供的一切,因为我知道从长远来看这会对我有更好的帮助,并希望能帮助帮助我追踪问题的人快速回答。

(PS。所有这些都是在一个名为 BlueJ 的程序中编译和运行的。这是一个在线类(class),所以我在类里面没有老师可以询问它,我们只有一个监视器。)

最佳答案

考虑一种添加两个 Time 的方法实例( ab )并返回一个新的 Time实例;这样的方法看起来像是提供的 Time 的倒数构造函数循环,for (itsMin = min; itsMin < 0; itsMin = itsMin + 60) ,特别是 - 它应该增加一些小时数(可能通过添加来自 a 和 b 的小时数)而分钟数是 > 59并一次减去 60 分钟......这个方法可能看起来像这样

public static Time add(Time a, Time b) {   // Add two Time(s) together.
if (a == null) { // if a is null, just return b.
return b;
} else if (b == null) { // if b is null, just return a.
return a;
}
int hours = a.itsHour + b.itsHour; // Add the hours together.
int minutes = a.itsMin + b.itsMin; // Add the minutes together.
for (; minutes > 59; minutes -= 60) { // Increment hours as necessary, while
// decrementing the minute count by 60.
hours++;
}
return new Time(hours, minutes); // Return the new Time instance.
}

public static void main(String[] args) {
Time now = new Time(7, 30); // 7:30 in the morning
Time wait = new Time(2, 45); // 2 hours 45 minutes
Time later = Time.add(now, wait); // produces 10:15 in
// the morning
System.out.println(later);
}

输出

1015

关于java - 使用显示为字符串的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20623488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com