C++ Pointer to Pointer -


im trying pointer pointer dynamic array elements pointer "figurasgeom"

how can it? started pointer pointer im not sure if ok..

figurageom  ** lista; 

is there way make dynamic array without using "vector"?

i have dont know how implement it

figurageom* vectr []; 

thank in advance!

based on description, left vector part out, need this:

vector<figurageom*> **lista; 

but weird data representation, @ least in c++. should start working more higher-level containers and/or smart pointers in c++.


Comments

Popular posts from this blog

c# - Unity IoC Lifetime per HttpRequest for UserStore -

Change the color of an oval at click in Java AWT -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -