Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,948 questions

51,890 answers

573 users

How to use a class with protected variable and protected function in C++

1 Answer

0 votes
#include <iostream>

class Base {
protected:
   int  x;
   void pfunction() { std::cout << "Access to pfunction() OK\n"; }
public:
   void setx( int i ) { x = i; }
   void Display() { std::cout << x << "\n"; }

} cb;

class Derived : public Base {
public:
   void f() { pfunction(); }
} dc;

int main() {
   // cb.x;         // error: ‘int Base::x’ is protected within this context
   cb.setx(298);  
   cb.Display();
   
   dc.setx(3);  
   dc.Display();
   
   // cb.pfunction(); //  error: ‘void Base::pfunction()’ is protected within this context
   dc.f();     
   
   return 0;
}


/*
run:

298
3
Access to pfunction() OK

*/

 



answered Jan 13, 2021 by avibootz

Related questions

1 answer 182 views
1 answer 173 views
1 answer 153 views
1 answer 225 views
...