Consider the following C++ 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); }   True/False: we could change the line commented "line 1" to the below, and the code would still compile: { fieldgoals = fg; attempts = a; ID = "123"; }   A) True  B) False

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section12.2: Providing Class Conversion Capabilities
Problem 6E
icon
Related questions
Question

Consider the following C++ 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);

}

 

True/False: we could change the line commented "line 1" to the below, and the code would still compile:

{ fieldgoals = fg; attempts = a; ID = "123"; }

 

A) True 

B) False 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Data members
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr