What is public, protected, private?
Answers were Sorted based on User's Feedback
Answer / khadeer.k
public:
public is an access specifier which can be used throughout
the program.
protected:
protected is an access specifier which can be used in the
specified class and its derived class...
private:
private is an access speifier which can be used whithin the
class in which it is declared.
Is This Answer Correct ? | 20 Yes | 2 No |
Answer / yughandhar
public:
public is an access specifier which can be used throughout
the program.
protected:
protected is an access specifier which can be used in the
specified class and its derived class...
private:
private is an access speifier which can be used whithin the
class in which it is declared.
These three access specifiers are used for providing the
security
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / prashanth
public,protected,private are access modifiers where public
is used for acess the methods and variables to unlimited
extent.
private:is used to access the variables upto the enclosing
region
protected:and it is limited to class itself or classes that
are derived
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / yughandhar
they are acceses specifieres.
these are used for security purpose
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / priya
public:public is a access specifier and it is used to access
class member through out the program .
private:private is a access specifier by default our variables are private when we didn't specify any data type for our variable.
protected:protected is a access specifier and its a immediate to derived class.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / reena ashok mohite
Public, Protected And Private these Are the Access Specifier Which We Use In Within The Class,
We Can Use Protected Access specifier In The Class And Its Derived Class,
we Can Use Public Access Specifier throught out the class,
(Anywhere In The Class)
And Private Specifier Can Be Accessable Within The Class Where It Is Declared........
This Is Useful To Data Hiding Purpose
Thanks........
Is This Answer Correct ? | 0 Yes | 0 No |
What is property in oops?
Plese get me a perfect C++ program for railway/airway reservation with all details.
Example for 4 pillar of oops like, Inheritance,Poly,Abstraction,Encabsulation ?
What is object in oop with example?
What are main features of oop?
What is polymorphism and its types?
what are the ways in which a constructors can be called?
what are the characteristics of oops?
Write a macro for swapping integers
What is class and object with example?
Is react oop?
What are callback functions in c++