私はここでは新人です。私は現在、DeVry online で中級 C++ プログラミングを受講しています。私たちは本 C++ Primer Plus を使用していますが、これまでのところ順調に進んでいます。私の先生は最近、私たちに少し変化球を投げました。私の現在の任務は次のとおりです。
totalSeconds (long 型を使用) という 1 つの変数を持つ Seconds クラスを作成します。このクラスには、convert( ) という 1 つの動作 (メソッド) が必要です。このビヘイビアーは、参照により次の変数を受け取る必要があります: 日、時間、分、および秒。このメソッドは、totalSeconds を日、時間、分、および秒の同等の時間に変換する必要があります。クラスでシンボリック定数を使用して、1 日の時間数、1 時間の分数、および 1 分の秒数を表します。
totalSeconds (long 型を使用) を取得する短いメイン プログラムを作成します。次に、Seconds オブジェクトを作成します。コンストラクターまたはミューテーターを使用して、totalSeconds を Seconds オブジェクトに渡します。convert( ) メソッドを呼び出し、日、時、分、および秒を引数として、参照によって送信します。main メソッドで日、時、分、秒を表示します。任意の道路、ここに私のコードがあります:
main.cpp
/*GSP 125 Intmed Prgrmg C++/OOP main.cpp*/
#include <iostream>
#include <string>
#include <conio.h>
#include <fstream>
#include "sec.h"
using namespace std;
int input = 0;
int main()
{
system("TITLE Tick Tack");
char choice1;
ofstream fout;
char filename[50];
cout << "Save results to file ? (Y/N) : ";
(cin >> choice1).get();//make choice, Y or N
if (toupper(choice1) == 'Y')
{
cout << "Enter filename(max 50 characters): ";
cin.getline(filename,50);//string for file name
fout.open(filename);//makes text file with chosen name
}
else
cout << "Results will not be saved!\n\n";
// ToDo: add your code here
cout << "Enter the number of seconds:";
long input;
cin >> input;
BRAVO alpha(long seconds,long minutes,long hours,long days,long years);
long breakdown = alpha.Totalseconds(); //this gets error C2228: left of '.Totalseconds' must have class/struct/union
cout << "\n\n" << input << " seconds = \n"<< breakdown << endl;
cout << year << day_remain << hour_remain << min_remain << seconds << endl;
// pause
cout << "\nPress any key to continue...";
cin.sync();//clearscreen
_getch();//waitkey
// return environment variable
return 0;
}
時間.cpp
// time.cpp
#include "time.h"
// constructors
BRAVO::BRAVO(void)
{
seconds = 0;
minutes = 0;
hours = 0;
days = 0;
years = 0;
}
BRAVO::BRAVO( long seconds, long minutes, long hours, long days, long years)
{
seconds = seconds;
minutes = minutes;
hours = hours;
days = days;
years = years;
}
// destructor
BRAVO::~BRAVO(void)
{}
// behaviors
double BRAVO::Totalseconds(void)
{
long input = 0;
//convert to minutes
long min = input / SecPerMin;
int sec = input % SecPerMin;
//convert to hours
long hour = min / MinPerHour;
int min_remain = min % MinPerHour;
//convert to days
long day = hour / HourPerDay;
int hour_remain = hour % HourPerDay;
//convert to years
long year = day / DaysPerYear;
int day_remain = day % DaysPerYear;
return BRAVO; //this gets error c2275: 'BRAVO' : illegal use of this type as an expression
}
// accessors and mutators
short BRAVO::getseconds(void)
{return seconds;}
void BRAVO::setseconds( long seconds )
{seconds = seconds;}
short BRAVO::getminutes(void)
{return minutes;}
void BRAVO::setminutes( long minutes )
{minutes = minutes;}
short BRAVO::gethours(void)
{return hours;}
void BRAVO::sethours( long hours )
{hours = hours;}
short BRAVO::getdays(void)
{return days;}
void BRAVO::setdays( long days )
{days = days;}
short BRAVO::getyears(void)
{return years;}
void BRAVO::setyears( long years )
{years = years;}
time.h
// sec.h
#ifndef BRAVO_H_
#define BRAVO_H_
#include <iostream>
// global constants
const int DaysPerYear = 365;
const int HourPerDay = 24;
const int MinPerHour = 60;
const int SecPerMin = 60;
long int seconds = 0;
long int minutes=0;
long int hours=0;
long int days=0;
long int years=0;
int min_remain=0;
int hour_remain=0;
int day_remain=0;
int year=0;
// Class definition
class BRAVO
{
private:
// accessors
short seconds;
short minutes;
short hours;
short days;
short years;
public:
// constructors
BRAVO(void);
BRAVO(long seconds, long minutes, long hours, long days, long years);
// destructor
~BRAVO(void);
// behaviors
double Totalseconds();
// accessors and mutators
short getseconds(void);
void setseconds( long seconds );
short getminutes(void);
void setminutes( long minutes );
short gethours(void);
void sethours( long hours );
short getdays(void);
void setdays( long days );
short getyears(void);
void setyears( long years );
short getmin_remain(void);
void setmin_remain( long min_remain );
short gethour_remain(void);
void sethour_remain( long hour_remain );
short getday_remain(void);
void setday_remain( long day_remain );
};
#endif
エラー C2275: 'BRAVO': この型を式として不正に使用しています
エラー C2228: '.Totalseconds' の左側にはクラス/構造体/共用体が必要です
2 つのエラーしか記録されていませんが、正確な問題を特定する回答が見つからないようです。アクセサと定数を追加しようとして、.h ファイルを少しやり過ぎたと思いますが、役に立ちませんでした。それらのほとんどは削除されます。
更新:提供された最初の回答に従った後、以前のエラーを解決することができました。しかし、私は新しいものに出会いました。以下に示す convertToDecimal 行には別のエラーがあります。
long seconds = 0, minutes = 0, hours = 0, days = 0;
BRAVO alpha(input);
float breakdown = alpha.convertToDecimal(seconds, minutes, hours, days); // pass variables by reference
//gets error C2660: 'BRAVO::convertToDecimal' : function does not take 4 arguments
cout << "\n\n" << input << " seconds = \n" << breakdown << endl;
cout << year << day_remain << hour_remain << min_remain << seconds << endl;
そこにあるものを変更しようとしましたが、うまくいきません。convertToDecimal に加えた唯一の変更は、次で終了したことです
return convertToDecimal; //this closed the error I was having with it