devxlogo

Range Checking Vectors

Range Checking Vectors

This standard library vector can be used like an array. For example:

std::vector v(2); // vector of size 2v[0] = 5;v[1] = v[0];

If you’re using an out-of-range index, the behavior is undefined. The program might crash without an appropriate error message. The statement:

v[2] = 0;

gives undefined behavior. To access a vector element safely, the at() member function may be used rather than the operator[]. While the statements:

v.at(0) = 5;v.at(1) = v.at(0);

have the same effects as the statements indicated in the example above, the statement:

v.at(2) = 0;

does not cause undefined behavior, instead it throws an std::out_of_range exception.

See also  Why ChatGPT Is So Important Today
devxblackblue

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.

About Our Journalist