array of pointers and pointer to array的相關文章
C++ Array Of Pointers - Stack Overflow

C++ Array Of Pointers - Stack Overflow

瀏覽:1324
日期:2025-04-23
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...看更多