samedi 12 août 2017

Creating instance of nested class

I have code like this:

class outer{
   int x;
   class inner{
     int y;
   }

   void print(int t_x){
     std::cout << t_x;
   }
}

Is there a way to create only instance of class inner? And if this is possible, will this object have acces to outer::print function ?

Aucun commentaire:

Enregistrer un commentaire