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,895 questions

51,826 answers

573 users

How to set vector capacity to hold vectors in memory 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
    
    ve.push_back(Vertex(3, 7, 0));
    ve.push_back(Vertex(2, 1, 0));
    ve.push_back(Vertex(8, 9, 6));
}



/*
run:

copy vertex
copy vertex
copy vertex

*/

 



answered Feb 6, 2023 by avibootz
edited Feb 6, 2023 by avibootz

Related questions

1 answer 161 views
2 answers 228 views
1 answer 219 views
2 answers 239 views
1 answer 205 views
...