VC6.0下面如何调试集合vector

首先我们看下调试vector

1. #include  
2.  
3. using namespace std;  
4.  
5. struct A{  
6.    int x,y;  
7.    A(int a = 0,int b = 0):x(a),y(b){}  
8. };  
9.  
10. void main()  
11. {  
12.    int array[] = {1,2,3,4,5};  
13.    vector<int> v(array,array+5);  
14.  
15.    vector<A> v_A;  
16.    A a;  
17.    for(int i = 0; i<3; i++)  
18.    {  
19.        cin>>a.x>>a.y;  
20.        v_A.push_back(a);  
21.    }  
22. }  
正常情况下,v在watch窗口下是这样的。
 
但是我们只想看,vector中的元素值,
那么我们在watch中输入 ((int*)v._First),5
 


如果vector中存放的是结构体或者类
 


如果只想看vector中某个某个结构体数组
 

你可能感兴趣的:(C++,C++,调试)