My class Timeは、1日の静的変数の時間と1時間の数分に応じて時間を表示できます。静的変数を変更するだけで、更新された時間を印刷することができます。静的変数を更新してインスタンスを更新するにはどうすればよいですか?
私のmain()では、デフォルトの静的変数(1日24時間、1時間60分)に基づいていくつかのTimeインスタンスを宣言したいと思います。
Time a;
Time b(5);
Time c(61);
cout << "a = " << a << "\t";
cout << "b = " << b << "\t";
cout << "c = " << c << "\n";
// output is a = 0:00 b = 0:05 c = 1:01
Time::set_hr_in_day(60);
Time::set_min_in_hr(24);
cout << "a = " << a << "\t";
cout << "b = " << b << "\t";
//output should be a = 0:00 b = 0:05 c = 2:13
ただし、コードではデフォルトの静的変数の数値が出力されます。
どのように私はこれを修正することができますか? Btw、私は与えられたドライバに対してテストするクラスを作成しようとしているので、私のmain関数を変更することはオプションではありません。あなたが唯一のconstruで計算を実行
ヘッダファイル
#ifndef TIME_H
#define TIME_H
#include <iostream>
using namespace std;
class Time {
private:
int hour;
int minute;
static int dayhrs;
static int hrsmin;
public:
Time();
Time(int min);
Time(int hr, int min);
Time(double hrs);
int minutes() { return minute; };
int hours() { return hour; };
static void set_hr_in_day(int hr);
static void set_min_in_hr(int min);
static int dailyhr() { return dayhrs; };
static int hourlymin() { return hrsmin; };
friend ostream& operator<<(ostream& os, const Time& t);
};
#endif
実装
#include "time.h"
#include <iostream>
using namespace std;
int Time::dayhrs = 24;//default
int Time::hrsmin = 60;
void Time::set_hr_in_day(int hr) {
dayhrs = hr;
}
void Time::set_min_in_hr(int min) {
hrsmin = min;
}
Time::Time() {
hour = 0;
minute = 0;
}
Time::Time(int min) {
if (min > (Time::hourlymin() - 1)) {
hour = min/Time::hourlymin();
minute = min % Time::hourlymin();
}
else {
hour = 0;
minute = min;
}
}
Time::Time(int hr, int min) {
if (min > (Time::hourlymin() - 1)) {
hour = min/Time::hourlymin() + hr;
minute = min % Time::hourlymin();
}
else {
hour = hr;
minute = min;
}
if (hour > (Time::dailyhr() - 1))
hour = hour % (Time::dailyhr());
}
Time::Time(double hrs) {
double fraction = 0;
fraction = hrs - (int)hrs;
minute = fraction * Time::hourlymin();
if (fraction * Time::hourlymin() - (int)(fraction * Time::hourlymin()) >= 0.5)
minute += 1;
hour = hrs - fraction;
if (hour > (Time::dailyhr() - 1))
hour = hour % (Time::dailyhr());
}
ostream& operator<<(ostream& os, const Time& t)
{
if (t.minute > 9)
os << t.hour << ":" << t.minute;
else
os << t.hour << ":0" << t.minute;
return os;
}
ドライバ
#include <iostream>
#include "time.h"
using std::cout;
int main() {
cout << "*****************************************\n";
cout << "Welcome to 'San Angel'!\n";
cout << "[ 1 day = 24 hours, 1 hour = 60 minutes ]\n\n";
Time a;
Time b(5);
Time c(61);
Time d(47, 59);
Time X(5.0);
Time Y(1.5);
Time Z(25.1);
cout << "a = " << a << "\t";
cout << "b = " << b << "\t";
cout << "c = " << c << "\n";
cout << "d = " << d << "\t";
cout << "X = " << X << "\t";
cout << "Y = " << Y << "\n";
cout << "\t\tZ = " << Z << "\n";
Time::set_hr_in_day(60);
Time::set_min_in_hr(24);
cout << "*****************************************\n";
cout << "Welcome to the land of the remembered!\n";
cout << "[ 1 day = 60 hours, 1 hour = 24 minutes ]\n\n";
cout << "a = " << a << "\t";
cout << "b = " << b << "\t";
cout << "c = " << c << "\n";
cout << "d = " << d << "\t";
cout << "X = " << X << "\t";
cout << "Y = " << Y << "\n";
cout << "\t\tZ = " << Z << "\n";
return 0;
}
/**
OUTPUT:
*****************************************
Welcome to 'San Angel'!
[ 1 day = 24 hours, 1 hour = 60 minutes ]
a = 0:00 b = 0:05 c = 1:01
d = 23:59 X = 5:00 Y = 1:30
Z = 1:06
*****************************************
Welcome to the land of the remembered!
[ 1 day = 60 hours, 1 hour = 24 minutes ]
a = 0:00 b = 0:05 c = 2:13
d = 59:23 X = 12:12 Y = 3:18
Z = 2:18 */
このような問題を解決する適切なツールは、デバッガです。スタックオーバーフローを尋ねる前に、コードを一行ずつ進める必要があります。詳しいヘルプは、[小さなプログラムをデバッグする方法(Eric Lippert)](https://ericlippert.com/2014/03/05/how-to-debug-small-programs/)を参照してください。最低限、問題を再現する[最小、完全、および検証可能](http://stackoverflow.com/help/mcve)の例と、その問題を再現するためのデバッガ。 –
申し訳ありませんが、私は一見を持っています。言語を学ぶだけなので、デバッガの使い方に慣れていません。 – coeurs