devxlogo

Creating Vectors of Pointers to the short Datatype

In most situations, it doesn’t make much sense to create vectors of pointers to the short datatype. Compare these two code samples:

vector myvector; //bad code.short * pS = new short;*pS = 2;myvector.push_back(ps);//***********************************vector myvector; // good codemyvector.push_back(2);//***********************************

You’ll note that each element in vector takes two bytes, whereas each element for vector takes four bytes (for the pointer on an Intel 32-bit machine) and two additional bytes on the heap (for the new short). So a short* takes a total of six bytes!

These unneccessary calls to new and delete leads to heap fragmentation and performance bottlenecks?and they can be avoided easily by using vector.

vector is much cleaner with lesser space requirements.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.