독서 노트 의 4:조건 부 문 구 를 적당 한 유형 에 넣는다.
방법:getCharge()와 getFrequentRenterPoints()를 Movie 류 로 이동 합 니 다.
계승 재 구성 코드 를 사용 하기 전에 rental&movie 코드 는 다음 과 같 습 니 다.
rental.h:
#ifndef RENTAL_H
#define RENTAL_H
#include "movie.h"
class Rental
{
public:
Rental(Movie movie, int daysRented);
double getCharge();
int getDaysRented();
Movie getMovie();
int getFrequentRenterPoints();
private:
Movie _movie;
int _daysRented;
};
#endif //RENTAL_H
rental.cpp:
#include "rental.h"
Rental::Rental(Movie movie, int daysRented)
{
_movie = movie;
_daysRented = daysRented;
}
double Rental::getCharge()
{
return _movie.getCharge(_daysRented);
}
int Rental::getDaysRented()
{
return _daysRented;
}
Movie Rental::getMovie()
{
return _movie;
}
int Rental::getFrequentRenterPoints()
{
return _movie.getFrequentRenterPoints(_daysRented);
}
movie.h:
#ifndef MOVIE_H
#define MOVIE_H
#include <string>
using std::string;
class Movie
{
public:
Movie(string title = "empty", int priceCode = 0);
double getCharge(int daysRented);
int getFrequentRenterPoints(int daysRented);
int getPriceCode();
void setPriceCode(int arg);
string getTitle();
public:
static const int REGULAR;
static const int NEW_RELEASE;
static const int CHILDRENS;
private:
string _title;
int _priceCode;
};
#endif //MOVIE_H
movie.cpp:
#include "movie.h"
const int Movie::REGULAR = 0;
const int Movie::NEW_RELEASE = 1;
const int Movie::CHILDRENS = 2;
Movie::Movie(string title , int priceCode)
{
_title = title;
_priceCode = priceCode;
}
double Movie::getCharge(int daysRented)
{
double result = 0;
// determine amounts for each line
switch(getPriceCode())
{
case REGULAR:
result += 2;
if (daysRented > 2)
{
result += (daysRented - 2) * 1.5;
}
break;
case NEW_RELEASE:
result += daysRented * 3;
break;
case CHILDRENS:
result += 1.5;
if (daysRented > 3)
{
result += (daysRented - 3) * 1.5;
}
break;
}
return result;
}
int Movie::getFrequentRenterPoints(int daysRented)
{
// add bonus for a two day new release rental
if ((getPriceCode() == NEW_RELEASE) && daysRented > 1)
return 2;
else
return 1;
}
int Movie::getPriceCode()
{
return _priceCode;
}
void Movie::setPriceCode(int arg)
{
_priceCode = arg;
}
string Movie::getTitle()
{
return _title;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.