How can I make an array attribute without predefined size? (God's language++) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can I make an array attribute without predefined size? (God's language++)

I need an object with an array as an attribute, the array size would be defined during the creation of the object (In the class constructor). I've no idea how to do that, would I need to use pointers? Using C++.

26th Feb 2020, 7:35 PM
Seb TheS
Seb TheS - avatar
3 Answers
+ 3
You can use pointers or you can use vector, that is much simpler and is more preffered in C++. For example: //with pointer: class A{ int *pData; public: A(unsigned size):pData(new int[size]){} ~A(){ delete[] pData; } }; //-------------------------------------------------- //more preffered way //with vector (vector header must be included) class A{ std::vector<int> data; public: A(unsigned size):data(size){} };
26th Feb 2020, 8:08 PM
andriy kan
andriy kan - avatar
+ 2
just be certain to include the delete destructor in your class when dynamically allocating via pointer. otherwise you will introduce memory leaks.
27th Feb 2020, 5:26 AM
Elizabeth Kelly
Elizabeth Kelly - avatar
0
andriy kan Yes, this is what I searched for, pointer solution seems more interesting for the case. Jayakrishna That was not the problem.
26th Feb 2020, 8:57 PM
Seb TheS
Seb TheS - avatar