Base class access specifier on the table

Base Class Access Specifier on the Table 15-1 

The base class access specifier determines the access privillege of a derived class to its base class.

In this exercise, we are going to inspect the access at three different scope:

1. Inside the Base class by the base class constuctor.

2. Inside the Derived class by the derived class constructor.

3. At the application , by referencing to the instance methods.

Detail information on the requirement is inside the starter.

Starter: lab11_starter.cpp 

Submit: lab11.cpp

Table 15-1
Base Class Access
Specification How Members of the Base Class Appear in the Derived Class.

private 

Private members of the base class are inaccessible to the derived class.
Protected members of the base class become private members of the
derived class.
Public members of the base class become private members of the derived class.

protected 

Private members of the base class are inaccessible to the derived class.
Protected members of the base class become protected members of the
derived class.
Public members of the base class become protected members of the derived
class.
public 

Private members of the base class are inaccessible to the derived class.
Protected members of the base class become protected members of the
derived class.
Public members of the base class become public members of the derived class.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lab11_starter.cpp is 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include <iostream>

class Base
{
public:
int mPublic;
private:
int mPrivate;
protected:
int mProtected;
public:
Base() : mPublic(0), mPrivate(0), mProtected(0) {
std::cout << “nmPublic: ” << mPublic << std::endl
<< “mPrivate: ” << mPrivate << std::endl
<< “mProtected: ” << mProtected << “n … created Basen”;
}
int get_mPublic() {return mPublic;}
int get_mPrivate() {return mPrivate;}
int get_mProtected() {return mProtected;}
};

class Pub: public Base
{
public:
// Public inheritance means:
// mPublic stays public
int get_Pub_mPublic() { return mPublic; }
// mPrivate becomes inaccessible

// mProtected stays protected
int get_Pub_mProtected() { return mProtected; }

Pub()
{
// The derived class always uses the immediate parent’s class access specifications
// Thus, Pub uses Base’s access specifiers
mPublic = 1; // okay: anybody can access public members
//mPrivate = 2; // not okay: derived classes can’t access private members in the base class!
mProtected = 3; // okay: derived classes can access protected members
std::cout << ” … inherited and modified by cPubn”
<< “mPublic: ” << mPublic << std::endl
<< “mPrivate not available, use get_mPrivate(): ” << get_mPrivate() << std::endl
<< “mProtected: ” << mProtected << “n … created cPubn”;
}
};

class Pri: private Base
{
// Fill the blank with 
// 3 getters, if possible.
// Default constructor with same initialization values (1, 2, 3) , if possible.
// Also, make the Default constructor display the private data values, either accessing directly or via base class getter.
// If the above required feature can not be done, explain why in comment.
};

class Pro: protected Base
{
// Fill the blank with 
// 3 getters, if possible.
// Default constructor with same initialization values (1, 2, 3) , if possible.
// Also, make the Default constructor display the private data values, either accessing directly or via base class getter.
// If the above required feature can not be done, explain why in comment.

};

int main()
{
// Outside access uses the access specifiers of the class being accessed.
// In this case, the access specifiers of cPub. Because Pub has inherited publicly from Base,
// no access specifiers have been changed.
std::cout << “n … creating cPub”;
Pub cPub;
cPub.mPublic = 4; // okay: anybody can access public members
// cPub.mPrivate = 5; // not okay: can not access private members from outside class
//cPub.mProtected = 6; // not okay: can not access protected members from outside class
std::cout << ” … access cPub by applicationn”
<< “cPub.get_Pub_mPublic(): ” << cPub.get_Pub_mPublic() << std::endl
<< “cPub.get_Pub_mPrivate(): ” << “does not exist!” << std::endl
<< “cPub.get_mPrivate(): ” << ” inaccessible, a private Base method!” << std::endl
<< “cPub.get_Pub_mProtected(): ” << cPub.get_Pub_mProtected() << “n”;

std::cout << “n … creating cPri”;
Pri cPri;
// Fill the blank below
// 1. to modify the value of the private data memeber of the base class to (4, 5, 6), 
// no need to explore the modification by the setter() method.
// 2. to retrieve and display the value of base class data members via either 
// cPro class methods, if possible.
// 3. If the private data member of the base class can not be accessed, explain.

std::cout << “n … creating cPro”;
Pro cPro;
// Fill the blank below, same requirement as above.

// However, we can still can access Base members as normal through Base:
Base cBase;
cBase.mPublic = 4; // okay, mPublic is public
//cBase.mPrivate = 5; // not okay, mPrivate is private
//cBase.mProtected = 6; // not okay, mProtected is protected
std::cout << ” … access cBase by applicationn”
<< “cBase.mPrublic: ” << cBase.mPublic << std::endl
<< “cBase.mPrivate: ” << “inaccessible, a private member!” << std::endl
<< “cBase.mProtected: ” << ” inaccessible, a protected member!” << std::endl;

}

Custom Writings Help
Calculate your paper price
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.

})();