I'm having a hard time understanding objects and classes...this is the problem...Defin e a class named Movie with private fields for the title, year, and name of the director. Include public member functions. Write a program that declares an instance of the Movie class called myFavorite. Prompt the user and the member fields (properties), then display the properties to std out.
all i have are the prototypes which are:
void Movie:: setTitle(cstrin g);
void Movie::setYear( int);
void Movie::setDirec tor(string);
void Movie::displayM ovie();
i havent worked with cstrings in a long long time and i am confused where to start now
all i have are the prototypes which are:
void Movie:: setTitle(cstrin g);
void Movie::setYear( int);
void Movie::setDirec tor(string);
void Movie::displayM ovie();
i havent worked with cstrings in a long long time and i am confused where to start now
Comment