Let\'s say we have the following code in c-style
class Dog { public: void woof() {}; }; int main() { Dog* mat[5][5]; mat[0][0] = new Dog();