Container of Pointers

Container of Pointers

Many programmers believe that by storing pointers instead of objects in a container, they improve performance. However, they forget that the pointers still refer to existing objects that must be stored somewhere. Worse yet, these objects are often allocated dynamically. Dynamic allocation is an expensive operation. Remember also that you have to destroy these objects as well, which is another costly operation. Perhaps the most compelling argument against the use of pointers as container elements is that you can easily avoid the overhead associated with moving objects in memory by pre-allocating enough storage for the container in advance. This will ensure that no reallocation takes place, hence, no objects are moved around. You can pre-allocate storage by calling the reserve() member function:

 std::vector < std::string > v;v.reserve(1000);  // make room for at least 1000 strings

In most cases, an empirical test will show that the overall performance of object containers is superior to the performance of pointer containers. In other words, the use of pointers is a classic example of premature optimization.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several