Skip to main content

Differentiate between public, protected and private class members with example.

 In C++, class members can have one of three access specifiers: public, protected, and private. These access specifiers determine the level of access that the class's data and member functions have from outside the class and its derived classes. Here is a brief explanation of each access specifier:

1. Public: Public members of a class are accessible from anywhere in the program. Public member functions can be called by any object of the class, as well as from outside the class. Public data members are also accessible from outside the class.

Example:

class Car {
public:
    string make;
    string model;
    int year;
    
    void drive() {
        cout << "Driving " << make << " " << model << " " << year << endl;
    }
};
int main() {
    Car myCar;
    myCar.make = "Toyota";
    myCar.model = "Corolla";
    myCar.year = 2022;
    myCar.drive();  // public member function can be called by any object
    return 0;
}

2. Protected: Protected members of a class are accessible from within the class and its derived classes, but not from outside the class. Protected member functions can be called by any object of the class, as well as from within derived classes. Protected data members are not accessible from outside the class, but can be accessed by derived classes.

Example:

class Animal {
protected:
    string species;
    int age;
    
    void growOlder() {
        age++;
    }
};
class Cat : public Animal {
public:
    void meow() {
        cout << "Meow! I'm a " << species << " and I'm " << age << " years old." << endl;
    }
};
int main() {
    Cat myCat;
    myCat.species = "cat";  // protected data member is accessible in derived class
    myCat.age = 3;  // protected data member is accessible in derived class
    myCat.growOlder();  // protected member function can be called in derived class
    myCat.meow();
    return 0;
}

3. Private: Private members of a class are only accessible from within the class, and not from outside the class or its derived classes. Private member functions can be called by other member functions of the class, but not from outside the class. Private data members are not accessible from outside the class or its derived classes.

Example:

class BankAccount {
private:
    double balance;
    
    void deduct(double amount) {
        balance -= amount;
    }
    
public:
    BankAccount(double initialBalance) {
        balance = initialBalance;
    }
    
    void deposit(double amount) {
        balance += amount;
    }
    
    void withdraw(double amount) {
        if (balance >= amount) {
            deduct(amount);  // private member function can be called by other member function
        } else {
            cout << "Insufficient funds!" << endl;
        }
    }
};
int main() {
    BankAccount myAccount(1000);
    myAccount.deposit(500);
    myAccount.withdraw(200);
    myAccount.withdraw(2000);  // private member function cannot be called from outside the class
    return 0;
}

Comments

Popular posts from this blog

Write a program using the algorithm count() to count how many elements in a container have a specified value.

 Here's an example program using the count() algorithm to count the number of occurrences of a specific value in a vector container: #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() {     vector<int> numbers = { 2, 5, 3, 7, 8, 5, 1, 5, 4 };          // count the number of occurrences of the value 5 in the vector     int count = count(numbers.begin(), numbers.end(), 5);          cout << "The number of occurrences of 5 in the vector is: " << count << endl;          return 0; } Output: The number of occurrences of 5 in the vector is: 3 Explanation: The program starts by creating a vector named numbers that contains several integer values. The count() algorithm is used to count the number of occurrences of the value 5 in the numbers vector. The function takes three arguments: the beginning and end iterators of...

Define polymorphism. Differentiate between overloading and overriding method with example.

 Polymorphism is a concept in object-oriented programming that allows objects of different classes to be treated as if they were objects of the same class. It allows a single method or operation to have different meanings or behaviors based on the context in which it is used. In Java, there are two types of polymorphism: Compile-time Polymorphism: This is achieved through method overloading, where two or more methods in a class have the same name but different parameters. Runtime Polymorphism: This is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its parent class. Here is an example of method overloading: class MyClass {    public int sum(int a, int b) {       return a + b;    }    public double sum(double a, double b) {       return a + b;    } } public class Main {    public static void main(String[] args) {     ...

write a program in C++ to overload '-' operator to find difference of two complex object.

write a program to overload '-' operator to find difference of two complex object /* program in C++ to overload '-' operator to find difference of two complex object */ #include<iostream> using namespace std; class Complex{     public:     float a, b;     complex(): a(0), b(0) {}     complex(float x, float y): a(x), b(y){}     void display(){          cout<<this->a<<"+"<<this->b<<"i"<<endl;     }     friend Complex operator-(const Complex&, const Complex&); }; complex operator-(const Complex& com, const Complex& comp){     float x= com.a - comp.a;     foat y= com.b - comp.b;     return Complex(x,y); } int main(){     Complex a(1,7), b(6,9);     cout<<"A = ";a.display();      cout<<"B = ";b.display();      cout<<"A - B = ";(a-b).display(); ...