I want to create in C++ an array which can hold objects of diffrent classes.
It’s a part of my hometask and one of the conditions is that i can’t use Stl, Boost & etc.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should create Base class and derive your class from Base class. And as a result you can create array
Base*array and put there all derived classes.