Home > Backend Development > C++ > body text

How to Print Elements of a C Vector in GDB?

DDD
Release: 2024-10-27 19:53:30
Original
502 people have browsed it

How to Print Elements of a C   Vector in GDB?

Printing Elements of a C Vector in GDB

When debugging C code in GDB, you may need to examine the contents of a vector. To do so with a vector of integers (std::vector), follow these steps:

Printing the Entire Vector:

print *(myVector._M_impl._M_start)@myVector.size()
Copy after login

This expression accesses the pointer to the internal array of the vector (_M_impl._M_start) and prints the specified number of elements (myVector.size()).

Printing Only the First N Elements:

print *(myVector._M_impl._M_start)@N
Copy after login

Replace N with the number of elements you want to print.

Explanation:

  • The pointer to the internal array is stored in _M_impl._M_start.
  • The GDB command to print N elements of an array starting at pointer P is: print P@N.
  • The total size of the vector can be obtained using myVector.size().

Note: This approach may vary depending on your compiler version. For GCC 4.1.2, this method has been tested to work effectively.

The above is the detailed content of How to Print Elements of a C Vector in GDB?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!