Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to optimize the creation of a vector of classes in C++

1 Answer

0 votes
#include <iostream>
#include <vector>

class Vertex {
public:
    float x, y, z;
    
    Vertex(float x, float y, float z) : x(x), y(y), z(z) {}
    
    Vertex (const Vertex& vertex) : x(vertex.x), y(vertex.y), z(vertex.z) {
        std::cout << "copy vertex" << "\n";
    }
};
    
int main() {
    std::vector<Vertex> ve;
    
    ve.reserve(3); // Set capacity
    
    // Nothing is consructed in main()
    
    ve.emplace_back(3, 7, 0); 
    ve.emplace_back(2, 1, 0);
    ve.emplace_back(8, 9, 6);
}



/*
run:



*/

 



answered Feb 6, 2023 by avibootz

Related questions

1 answer 197 views
1 answer 225 views
2 answers 216 views
1 answer 209 views
1 answer 220 views
1 answer 220 views
...