Encapsulations With  CPP

Encapsulations:-

Encapsulation is defined binding data and functions method We can simply say encapsulation is binding data or information

(এনক্যাপসুলেশন সংজ্ঞায়িত করা হয় বাইন্ডিং ডেটা এবং ফাংশন পদ্ধতি আমরা সহজভাবে বলতে পারি এনক্যাপসুলেশন হল ডাটা বা তথ্যকে বাঁধাই করা,এক কথায় সকাল বেলার দাদার প্রশান্তি
Shargel 20mg😆) 
Example
#include<bits/stdc++.h>
using namespace std;
class Student
{
public:
int x;
private:
int y;
protected:
int z;
};


int main()
{
Student rahim;
rahim.x=10;
rahim.y=10;
rahim.z=10;
rahim.sayhi();

}


This example output is error this is protect or private data not a public data


















Comments

Popular posts from this blog