DEV Community

s
s

Posted on

Answer:

std::vector::insert copies or moves the elements into the container by calling copy constructor or move constructor.
while,
In std::vector::emplace elements are constructed in-place, i.e. no copy or move operations are performed.

The later was introduced since C++11 and its usage is desirable if copying your class is a non…

Top comments (0)