Consider the following code: class Player { private:     string ID;     string name; public:     Player(string n, string s)     { name = n; setID(s); }     string getName() const     { return name; }     string getID() const     { return ID; }     void setID(string s)     { ID = s; } };   class BasketballPlayer : public Player { private:     int fieldgoals;     int attempts; public:     BasketballPlayer(string n, string i, int fg, int a) : Player(n, i)     { fieldgoals = fg; attempts = a;  } // line 1     void printStats() const     { cout << " Pct: " << (double) fieldgoals / attempts << endl; } };   int main() {     Player golfer("Tiger Woods", "123456789");     BasketballPlayer pointGuard("Stephen Curry", "567890123", 2585, 5523); }   Which of the objects can call the member function printStats() from main()? A) both golfer and pointGuard B) neither golfer nor pointGuard C) pointGuard D) golfer

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 5PE
icon
Related questions
Question

Consider the following code:

class Player

{

private:

    string ID;

    string name;

public:

    Player(string n, string s)

    { name = n; setID(s); }

    string getName() const

    { return name; }

    string getID() const

    { return ID; }

    void setID(string s)

    { ID = s; }

};

 

class BasketballPlayer : public Player

{

private:

    int fieldgoals;

    int attempts;

public:

    BasketballPlayer(string n, string i, int fg, int a) : Player(n, i)

    { fieldgoals = fg; attempts = a;  } // line 1

    void printStats() const

    { cout << " Pct: " << (double) fieldgoals / attempts << endl; }

};

 

int main()

{

    Player golfer("Tiger Woods", "123456789");

    BasketballPlayer pointGuard("Stephen Curry", "567890123", 2585, 5523);

}

 

Which of the objects can call the member function printStats() from main()?

A) both golfer and pointGuard

B) neither golfer nor pointGuard

C) pointGuard

D) golfer

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT