我正試圖收集小時的分鐘。這似乎在這個班上工作。現在我想在其他類中使用intTime進行一些計算。我如何返回intTime。 我嘗試在返回實例的屬性時使用相同的原則,但時間與我使用的任何對象無關。 getIntTime是否可行?返回到另一個班的時間
import java.text.SimpleDateFormat;
import java.util.*;
public class Time extends Database{
public Time(){
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat ("HH:mm:ss");
String stringTime = sdf.format (cal.getTime());
int intTime = 0;
stringTime = stringTime.substring(3,5); // retrieve the minutes (is recorded as string)
intTime = Integer.parseInt(stringTime);
}
public String getStringTime() {
return intTime;
}
public static void main (String[] args) {
}
}