Prefer Private Data Members to Protected Ones

Prefer Private Data Members to Protected Ones

Data members of a class are usually a part of its implementation rather than its interface. They may be replaced when the internal implementation of the class is to be changed, and hence, they should be hidden from other classes. If derived classes need to access these data members, they should use accessor methods (“getters”) rather than directly access data members of another object. As a result, no modification will be required for derived classes when a change is made in the base class:

 class Date { private:int d,m,y //how a date is represented is an implementation detailpublic:int Day() const {return d; } };class DateTime : public Date {int h,m,s};

Now let’s assume that class Date is used mostly on display devices, so it has to supply some method of converting its d,m,y integers into a displayable string. In order to enhance performance, a design modification is made: instead of the three integers, a single string will now hold the date representation. Had class DateTime relied on the internal implementation of Date, it would have had to be modified as well. But since it can access Date’s data members only through access methods, all that is required is a small change in Date::Day() method. Please note that accessor methods are inlined anyway, so their use should not incur any overhead.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes