- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,我正在学习 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
的方法实例( a
和 b
)并返回一个新的 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/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!