C++ Array Of Pointers - Stack Overflow

C++ Array Of Pointers - Stack Overflow

瀏覽:658
日期:2024-05-09
For example, if you want an array of int pointers it will be int* a[10]. It means that variable a is a collection of 10 int* s. EDIT I guess this is what you want to do: class Bar { }; class Foo { public: //Takes number of bar elements in the pointer arra...看更多