クラスのために、私は時間と呼ばれる構造体と、このようなh.を作成しました
struct Time{
Time() : hours(0),minutes(0),seconds(0),ticks(0){}
int hours, minutes, seconds, ticks;
};
Time convert (clock_t t, Time &time);
std::string hmst(Time &time);
std::string hmst(clock_t t);
その後、先生は、このプログラムで同じコードを使用する別のプログラムを作成するように指示しました。上書きするのではなく、含めました。最初の質問は、これが正当な #include であるかどうかです (パスが正しいと仮定して)
#include "../p*/*r*/0*/*s/02*/time.h"
2 番目の質問現在作業中のプログラムで convert 関数を使用する必要があります。どうすればこれを行うことができますか?次のようにスコープ解決演算子を使用しますか
timeobeject=Time::convert(t,time);
またはこのように
timeobject=convert(t,time);